Set rallocobj with configure, not cpp.
[bpt/emacs.git] / src / ChangeLog
1 2010-05-18 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (RALLOC_OBJ): New, set by configure.
4 (rallocobj): Replace with the previous variable.
5 (otherobj): Use $RALLOC_OBJ.
6
7 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
8 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
9
10 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
11 (gmallocobj, vmlimitobj): Replace with previous two variables.
12 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
13
14 2010-05-17 Glenn Morris <rgm@gnu.org>
15
16 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
17 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
18
19 2010-05-16 Glenn Morris <rgm@gnu.org>
20
21 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
22
23 * Makefile.in (clean): Get rid of HAVE_NS conditional.
24
25 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
26 trailing "/".
27
28 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
29 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
30
31 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
32 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
33 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
34 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
35 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
36
37 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
38 Remove ${STARTFLAGS}, nothing ever sets it.
39
40 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
41
42 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
43
44 2010-05-16 Glenn Morris <rgm@gnu.org>
45
46 * Makefile.in (LIBX_BASE): Always define.
47
48 * Makefile.in (LIBX_OTHER): Move out of cpp section.
49
50 * Makefile.in (LIBXT): Always define.
51
52 2010-05-15 Glenn Morris <rgm@gnu.org>
53
54 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
55
56 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
57 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
58
59 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
60
61 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an
62 rvalue. (bug#5916)
63 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
64
65 * emacs.c (main): Initialize initial-environment and
66 process-environment before generating from env, not after.
67
68 Handle --version reasonably in CANNOT_DUMP configuration.
69 * emacs.c (emacs_version, emacs_copyright): New string variables.
70 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
71 (syms_of_emacs): Defvar them, and initialize them from the C
72 string variables.
73 (main): If initialization hasn't been done, print initial version
74 info from the C strings, instead of starting an interactive session.
75
76 2010-05-15 Eli Zaretskii <eliz@gnu.org>
77
78 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
79 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
80 (bidi_paragraph_init): Remove redundant assertion that we are at
81 the beginning of a line after call to bidi_find_paragraph_start.
82
83 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
84 (syms_of_xdisp): Defsubr it.
85
86 * Makefile.in: Fix MSDOS-related comments.
87
88 2010-05-15 Glenn Morris <rgm@gnu.org>
89
90 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
91 (really-lwlib, really-oldXMenu): Always define.
92 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
93
94 * Makefile.in: Simplify cpp conditional.
95
96 * Makefile.in (${ns_appdir}): Simplify using umask.
97
98 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
99
100 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
101
102 * eval.c (specbind): Remove left-over duplicate test.
103 Disallow let-binding frame-local vars. Add comment.
104
105 2010-05-14 Eli Zaretskii <eliz@gnu.org>
106
107 Make the cache of bidi iterator states dynamically allocated.
108 * bidi.c (bidi_cache_shrink): New function.
109 (bidi_init_it): Call it.
110 (bidi_cache_iterator_state): Enlarge the cache if needed.
111
112 * bidi.c (bidi_move_to_visually_next): Rename from
113 bidi_get_next_char_visually. All callers changed.
114
115 2010-05-14 Kenichi Handa <handa@m17n.org>
116
117 * dispextern.h (struct composition_it): New member reversed_p.
118
119 * composite.c (composition_compute_stop_pos): Search backward if
120 ENDPOS < CHARPOS.
121 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
122 Set CMP_IT->reversed_p.
123 (composition_update_it): Pay attention to CMP_IT->reversed_p.
124
125 * xdisp.c (set_iterator_to_next):
126 Call composition_compute_stop_pos with negative ENDPOS if we are
127 scanning backward. Call composition_compute_stop_pos if scan
128 direction is changed.
129 (next_element_from_buffer): Call composition_compute_stop_pos with
130 negative ENDPOS if we are scanning backward.
131 (next_element_from_composition): Pay attention to
132 IT->cmp_it.reversed_p.
133
134 2010-05-14 Kenichi Handa <handa@m17n.org>
135
136 * font.c (font_range): Return the range for the font found at
137 first.
138
139 2010-05-14 Glenn Morris <rgm@gnu.org>
140
141 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
142
143 * Makefile.in (mktime, X11, register): Move undefs to configure.
144
145 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
146 (MSDOS_X_OBJ): New variable.
147 (MSDOS_SUPPORT_REAL): New constant.
148 (MSDOS_SUPPORT): Set as a variable, not with cpp.
149 (obj): Use MSDOS_X_OBJ.
150 (lisp): Use MSDOS_SUPPORT as a variable.
151
152 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
153 (GPM_MOUSE_SUPPORT): Now it's a constant.
154 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
155 not cpp.
156
157 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
158 (ns_appresdir): Remove, unused.
159
160 * Makefile.in (SHELL): Move outside cpp section.
161
162 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
163
164 2010-05-13 Glenn Morris <rgm@gnu.org>
165
166 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
167 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
168
169 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
170 HAVE_WINDOW_SYSTEM must be too.
171
172 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
173 (lisp): Remove WINNT_SUPPORT.
174
175 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
176 Let configure set these variables (to empty) in this case as well.
177
178 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
179 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
180
181 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
182 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
183 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
184 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
185 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
186 the values output by configure.
187 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
188
189 2010-05-12 Glenn Morris <rgm@gnu.org>
190
191 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
192 (LINKER_WAS_SPECIFIED): Remove.
193
194 * Makefile.in (LIB_GCC): Set using configure, not cpp.
195 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
196 * m/arm.h (LIB_GCC) [GNU_LINUX]:
197 * s/cygwin.h (LIB_GCC):
198 * s/freebsd.h (LIB_GCC):
199 * s/gnu-linux.h (LIB_GCC):
200 * s/msdos.h (LIB_GCC):
201 * s/netbsd.h (LIB_GCC):
202 Move to configure.
203
204 2010-05-11 Karel Klic <kklic@redhat.com>
205
206 * ftfont.c: Fix incorrect parentheses of #if condition for
207 definining M17N_FLT_USE_NEW_FEATURE.
208
209 2010-05-11 Glenn Morris <rgm@gnu.org>
210
211 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
212 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
213
214 2010-05-10 Eli Zaretskii <eliz@gnu.org>
215
216 * xdisp.c (init_iterator): Don't turn on bidi reordering in
217 unibyte buffers. See
218 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
219
220 2010-05-10 Glenn Morris <rgm@gnu.org>
221
222 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
223 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
224 (LIBES): Use LIBS_SYSTEM as a variable.
225 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
226 * s/aix4-2.h (LIBS_SYSTEM):
227 * s/freebsd.h (LIBS_SYSTEM):
228 * s/hpux10-20.h (LIBS_SYSTEM):
229 * s/sol2-6.h (LIBS_SYSTEM):
230 * s/unixware.h (LIBS_SYSTEM):
231 Move to configure.
232
233 * s/aix4-2.h (MAIL_USE_LOCKF):
234 * s/bsd-common.h (MAIL_USE_FLOCK):
235 * s/darwin.h (MAIL_USE_FLOCK):
236 * s/gnu-linux.h (MAIL_USE_FLOCK):
237 * s/irix6-5.h (MAIL_USE_FLOCK):
238 * s/template.h (MAIL_USE_FLOCK):
239 Move to configure.
240
241 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
242
243 * Version 23.2 released.
244
245 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
246
247 * composite.c (autocmp_chars): Save point as marker before calling
248 auto-composition-function (Bug#5984).
249
250 * lisp.h (restore_point_unwind): Add prototype.
251
252 * fileio.c (restore_point_unwind): Remove static attribute.
253
254 2010-05-08 Kenichi Handa <handa@m17n.org>
255
256 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
257 new feature of libotf and m17n-flt.
258 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
259 Call OTF_check_features even if no specific feature is given.
260 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
261 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
262 that OUT is NULL. Use OTF_drive_gsub_with_log and
263 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
264 OTF_drive_gpos.
265 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
266 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
267 Setup mflt_enable_new_feature and mflt_try_otf.
268
269 2010-05-08 Jan Djärv <jan.h.d@swipnet.se>
270
271 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
272
273 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
274 box and toolbar (Bug #6139).
275 (xg_create_tool_bar): Remove comment (Bug #6139).
276 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
277 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
278
279 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
280
281 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
282 Update dependencies.
283
284 2010-05-08 Eli Zaretskii <eliz@gnu.org>
285
286 * fringe.c (update_window_fringes): Set up truncation bitmaps for
287 R2L lines.
288
289 2010-05-08 Glenn Morris <rgm@gnu.org>
290
291 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
292
293 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
294 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
295 (termcapobj): Replace with TERMCAP_OBJ.
296 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
297 (LIBES): Use LIBS_TERMCAP as a variable.
298
299 * s/freebsd.h (osreldate.h): No longer include, since this file
300 does not use __FreeBSD_version any more.
301
302 * s/aix4-2.h (TERMINFO):
303 * s/cygwin.h (TERMINFO):
304 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
305 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
306 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
307 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
308 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
309 * s/irix6-5.h (TERMINFO):
310 * s/netbsd.h (LIBS_TERMCAP):
311 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
312 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
313 * s/usg5-4.h (TERMINFO):
314 Move to configure.
315
316 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
317
318 * eval.c (unbind_to): Don't unbind a local binding into the global
319 binding when the local binding disappeared. Inversely, don't unbind
320 a global binding into a newly created local binding.
321 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
322 can specify the frame to use, when applicable. Adjust callers.
323
324 2010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
325 Stefan Monnier <monnier@iro.umontreal.ca>
326
327 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
328
329 2010-05-07 Eli Zaretskii <eliz@gnu.org>
330
331 * w32fns.c: Include w32.h.
332 (Fw32_shell_execute): Decode the error message before passing it
333 to `error'. (Bug#6126)
334
335 * msdos.c (dos_set_window_size):
336 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
337 instead of `XSYMBOL (foo)->value'.
338
339 2010-05-07 Eli Zaretskii <eliz@gnu.org>
340
341 Fix the MS-DOS build, broken by autoconfiscation.
342
343 * Makefile.in: Don't use Make-style comments past the "start of
344 cpp stuff" line.
345 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
346
347 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
348 edited directly by msdos/sed1v2.inp).
349
350 2010-05-07 Glenn Morris <rgm@gnu.org>
351
352 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
353 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
354 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
355 move out of cpp section.
356 * s/freebsd.h (LD_SWITCH_SYSTEM):
357 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
358 * s/netbsd.h (LD_SWITCH_SYSTEM):
359 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
360
361 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
362
363 Define LIB_STANDARD and START_FILES using autoconf.
364 * s/usg5-4.h (LIB_STANDARD):
365 * s/netbsd.h (START_FILES):
366 * s/irix6-5.h (LIB_STANDARD):
367 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
368 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
369 * s/freebsd.h (START_FILES):
370 * s/darwin.h (START_FILES):
371 * s/cygwin.h (START_FILES):
372 * s/aix4-2.h (LIB_STANDARD):
373 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
374 * Makefile.in (STARTFILES): Rename to START_FILES, define using
375 autoconf, not cpp.
376
377 2010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
378
379 Remove NEED_BSDTTY and NEED_UNISTD_H.
380 * s/hpux10-20.h (NEED_BSDTTY): Remove.
381 * s/aix4-2.h (NEED_UNISTD_H): Remove.
382 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
383 <sys/ptyio.h> and <unistd.h>.
384
385 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
386
387 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
388 * s/gnu.h (START_FILES): Remove empty definition.
389
390 2010-05-06 Jan Djärv <jan.h.d@swipnet.se>
391
392 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
393
394 2010-05-06 Glenn Morris <rgm@gnu.org>
395
396 * Makefile.in (CPP, LN_S): Remove unused variables.
397
398 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
399
400 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
401
402 2010-05-05 Lawrence Mitchell <wence@gmx.li>
403
404 * m/sparc.h: Fix typo in earlier change.
405
406 2010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
407
408 Misc tweaks.
409 * eval.c (Fdefvaralias): Remove unintended nested if.
410 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
411
412 2010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
413
414 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
415
416 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
417
418 Remove BSD_PGRPS.
419 * s/bsd-common.h (BSD_PGRPS): Remove undef.
420 * s/gnu-linux.h (BSD_PGRPS): Remove.
421 * term.c (dissociate_if_controlling_tty):
422 * sysdep.c (narrow_foreground_group, widen_foreground_group)
423 (init_sys_modes, reset_sys_modes):
424 * emacs.c (main):
425 * callproc.c (Fcall_process, child_setup): Remove code depending
426 on BSD_PGRPS.
427
428 Remove POSIX_SIGNALS.
429 * s/usg5-4.h (POSIX_SIGNALS):
430 * s/netbsd.h (POSIX_SIGNALS):
431 * s/msdos.h (POSIX_SIGNALS):
432 * s/ms-w32.h (POSIX_SIGNALS):
433 * s/hpux11.h (POSIX_SIGNALS):
434 * s/gnu.h (POSIX_SIGNALS):
435 * s/gnu-linux.h (POSIX_SIGNALS):
436 * s/freebsd.h (POSIX_SIGNALS):
437 * s/darwin.h (POSIX_SIGNALS):
438 * s/cygwin.h (POSIX_SIGNALS):
439 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
440 * s/unixware.h:
441 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
442 * process.c (create_process):
443 * syssignal.h:
444 * sysdep.c (wait_for_termination, init_signals):
445 * process.c (create_process):
446 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
447 remove all code that assumes the contrary.
448
449 2010-05-04 Glenn Morris <rgm@gnu.org>
450
451 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
452 variable.
453 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
454 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
455 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
456 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
457 LD_SWITCH_SYSTEM_tmp.
458 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
459 New variables, set by configure.
460
461 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
462 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
463 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
464 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
465 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
466
467 * s/aix4-2.h (C_SWITCH_SYSTEM):
468 * m/alpha.h (C_SWITCH_MACHINE):
469 Move to configure.in.
470 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
471 New variables, set by configure.
472 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
473 $c_switch_machine and $c_switch_system.
474
475 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
476
477 * s/hpux10-20.h (LIB_STANDARD): New definition.
478 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
479 on it, not used anymore.
480
481 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
482
483 * eval.c (internal_condition_case_n): Rename from
484 internal_condition_case_2.
485 (internal_condition_case_2): New function.
486
487 * xdisp.c (safe_call): Use internal_condition_case_n.
488
489 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
490 (internal_delete_file, Frename_file): Callers changed.
491
492 * buffer.c (Fkill_buffer):
493 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
494
495 * lisp.h: Update prototypes.
496
497 2010-05-03 Glenn Morris <rgm@gnu.org>
498
499 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
500 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
501 (LIBXT): Set with configure, not cpp.
502 (LIBX): Remove.
503 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
504
505 2010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
506
507 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
508 The FreeBSD is not needed, the default works, Solaris version is
509 not needed, and the remaining case is not supported by configure.
510
511 2010-05-02 Jan Djärv <jan.h.d@swipnet.se>
512
513 * xsmfns.c (CHDIR_OPT): New define.
514 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
515 restarting emacs.
516
517 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
518 shut_down_emacs.
519
520 * emacs.c (USAGE1): Mention --chdir.
521 (main): Handle --chdir.
522 (standard_args): Add --chdir.
523 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
524 #5552).
525
526 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
527
528 Remove LD_SWITCH_MACHINE.
529 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
530 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
531
532 Clean up IRIX code.
533 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
534 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
535
536 Clean up AIX code.
537 * m/ibmrs6000.inp: Remove file, unused.
538 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
539 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
540 definition ...
541 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
542
543 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
544 unused.
545
546 2010-05-01 Eli Zaretskii <eliz@gnu.org>
547
548 Emulate POSIX_SIGNALS on MS-Windows.
549
550 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
551 (SIG_SETMASK, SIG_UNBLOCK): Define.
552
553 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
554 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
555 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
556
557 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
558 New stubs.
559
560 Miscellaneous fixes of bidi display.
561
562 * xdisp.c (find_row_end): New function, refactored from display_line.
563 (display_line): Use it.
564 (extend_face_to_end_of_line): In almost-filled rows, extend only
565 if the row is R2L and not continued.
566 (display_line): Fix prepending of truncation glyphs to R2L rows.
567 Preserve overlay and string info in row->end.
568 (insert_left_trunc_glyphs): Support addition of left truncation
569 glyphs to R2L rows.
570 (set_cursor_from_row): Don't place cursor on the vertical border
571 glyph between adjacent windows. Fix a crash when a display string
572 is continued to the next line. Don't return zero if cursor was
573 found by `cursor' property of a display string.
574 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
575 test for that explicitly.
576
577 2010-05-01 Glenn Morris <rgm@gnu.org>
578
579 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
580 for clarity.
581 (OTHER_OBJ): Remove.
582 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
583 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
584
585 2010-05-01 Karel Klíč <kklic@redhat.com>
586
587 * fileio.c (Ffile_selinux_context): Context functions may return null.
588
589 2010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
590
591 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
592
593 2010-04-30 Glenn Morris <rgm@gnu.org>
594
595 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
596 (OTHER_OBJ): Define as a separate variable, for clarity.
597
598 2010-04-30 Jan Djärv <jan.h.d@swipnet.se>
599
600 * xsettings.c: include limits.h and update file comment.
601
602 2010-04-30 Glenn Morris <rgm@gnu.org>
603
604 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
605 Set with configure, not cpp.
606 (LIBW): Remove, replace with $TOOLKIT_LIBW.
607
608 * Makefile.in (mallocobj): Remove.
609 (otherobj): Simplify using @OTHER_OBJ@.
610
611 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
612 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
613 Don't bother making nsgui.h dependency platform-specific.
614
615 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
616
617 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
618
619 * process.c (read_process_output, exec_sentinel): Don't burp if the
620 sentinel/filter kills the current buffer (bug#6060).
621
622 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
623 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
624 Remove unused var `args'.
625 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
626 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
627 * doc.c (store_function_docstring): Use XSETCAR.
628
629 2010-04-28 Glenn Morris <rgm@gnu.org>
630
631 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
632 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
633
634 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
635
636 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
637 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
638
639 * Makefile.in (FONT_OBJ): New, set by configure.
640 (FONT_DRIVERS): Use $FONT_OBJ.
641
642 * Makefile.in (LIBXMU): Set with configure, not cpp.
643 * s/aix4-2.h (LIBXMU):
644 * s/hpux10-20.h (LIBXMU):
645 Remove definition, now set in configure.
646
647 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
648
649 * m/amdx86-64.h [i386]: Move this test to configure.in.
650
651 2010-04-27 Glenn Morris <rgm@gnu.org>
652
653 * Makefile.in (LIBXTR6): Set with configure, not cpp.
654 * s/unixware.h (NEED_LIBW): Remove definition.
655
656 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
657 (TOOLKIT_LIBW): New, set by configure.
658 (@X_TOOLKIT_TYPE@): No longer define it.
659
660 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
661 (MOTIF_LIBW): Set with configure, not cpp.
662 * s/aix4-2.h (LIB_MOTIF):
663 * s/gnu-linux.h (LIB_MOTIF):
664 * s/unixware.h (LIB_MOTIF): Move to configure.in.
665
666 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
667
668 Reduce CPP usage.
669 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
670 (obj): Use autoconf for unexec instead of cpp.
671 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE): Remove
672 definitions and undefs. Inline definitions in the only user.
673 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
674
675 2010-04-27 Glenn Morris <rgm@gnu.org>
676
677 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
678 since the defaults (set by the system file) are fine in most cases.
679 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
680 * m/ibms390x.h (START_FILES, LIB_STANDARD):
681 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
682 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
683 Remove definitions, since they are set correctly in s/gnu-linux.h.
684 * s/freebsd.h (START_FILES, LIB_STANDARD):
685 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
686 * s/hpux10-20.h (START_FILES):
687 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
688 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
689
690 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
691 (MOTIF_LIBW): Use $LIBXP.
692 (otherobj): Use $WIDGET_OBJ.
693
694 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
695
696 * Makefile.in (LIBS_MACHINE): Remove, unused.
697
698 Use autoconf instead of cpp for LIB_MATH.
699 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
700 * s/cygwin.h (LIB_MATH): Likewise.
701 * Makefile.in (LIB_MATH): Do not define with cpp.
702 (LIBES): Use autoconf for LIB_MATH.
703
704 2010-04-26 Kenichi Handa <handa@m17n.org>
705
706 * composite.c (Ffind_composition_internal): Fix the return value
707 for an automatic composition.
708
709 2010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
710
711 Remove all NO_ARG_ARRAY uses.
712 * fns.c (concat2, concat3, nconc2):
713 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
714 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
715 * m/xtensa.h (NO_ARG_ARRAY):
716 * m/template.h (NO_ARG_ARRAY):
717 * m/sparc.h (NO_ARG_ARRAY):
718 * m/sh3.h (NO_ARG_ARRAY):
719 * m/mips.h (NO_ARG_ARRAY):
720 * m/macppc.h (NO_ARG_ARRAY):
721 * m/iris4d.h (NO_ARG_ARRAY):
722 * m/intel386.h (NO_ARG_ARRAY):
723 * m/ibms390x.h (NO_ARG_ARRAY):
724 * m/ibms390.h (NO_ARG_ARRAY):
725 * m/ibmrs6000.h (NO_ARG_ARRAY):
726 * m/ia64.h (NO_ARG_ARRAY):
727 * m/hp800.h (NO_ARG_ARRAY):
728 * m/arm.h (NO_ARG_ARRAY):
729 * m/amdx86-64.h (NO_ARG_ARRAY):
730 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
731
732 2010-04-25 Eli Zaretskii <eliz@gnu.org>
733
734 * xdisp.c (display_line): Don't assume 2nd call to
735 get_next_display_element cannot return zero. (Bug#6030)
736 (iterate_out_of_display_property): New function, body from pop_it.
737 (pop_it): Use it.
738
739 2010-04-24 Glenn Morris <rgm@gnu.org>
740
741 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
742 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
743 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
744 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
745
746 2010-04-24 Eli Zaretskii <eliz@gnu.org>
747
748 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
749 use `get_next_display_element' and `set_iterator_to_next' to
750 advance to the next character, when looking for the character that
751 begins the next row.
752
753 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
754 definition of "struct Lisp_Symbol".
755
756 2010-04-24 Glenn Morris <rgm@gnu.org>
757
758 * Makefile.in (CRT_DIR): New variable, set by configure.
759 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
760 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
761
762 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
763
764 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
765
766 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
767
768 Remove redundant flags.
769 * s/freebsd.h (C_SWITCH_SYSTEM):
770 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
771 * s/netbsd.h (C_SWITCH_SYSTEM):
772 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
773 of these.
774
775 Simplify m/intel386.h.
776 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
777 user: ecrt0.c.
778 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
779 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
780 the only user: s/unixware.h.
781 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
782 from m/intel386.h.
783 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE): Definitions
784 moved here from m/intel386.h.
785
786 * m/mips.h: Remove #if 0 code.
787
788 2010-04-23 Eli Zaretskii <eliz@gnu.org>
789
790 Fix display of composed characters from L2R scripts in bidi buffers.
791 * xdisp.c (set_iterator_to_next, next_element_from_composition):
792 After advancing IT past the composition, resync the bidi iterator
793 with IT's position. (Bug#5977)
794
795 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
796
797 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
798 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
799
800 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
801
802 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
803
804 2010-04-23 Eli Zaretskii <eliz@gnu.org>
805
806 Support `display' text properties and overlay strings in bidi buffers.
807 * xdisp.c (pop_it): When the stack is popped after displaying
808 from a string, bidi-iterate to exit from the text portion covered
809 by the `display' property or overlay. (Bug#5988, bug#5920)
810
811 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
812
813 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
814 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
815
816 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
817 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
818
819 Simplify STARTFILES definition.
820 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
821 relying on Makefile.in to define it.
822 * s/cygwin.h (START_FILES): Likewise.
823 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
824
825 Clean up Solaris code.
826 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
827 (LIB_MOTIF): Remove, configure takes care of this.
828 (NOT_USING_MOTIF): Remove, unused.
829 * xrdb.c: Remove #if 0-ed #include.
830 (SYSV): Remove conditional for old SysV.
831 * sysdep.c (closedir): Remove conditional code for Solaris,
832 Solaris has closedir.
833
834 2010-04-22 Jan Djärv <jan.h.d@swipnet.se>
835
836 * xsettings.c (read_and_apply_settings): Check if current_font is
837 NULL before strcmp (Bug#6001).
838
839 2010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
840
841 Clean up HP-UX files.
842 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
843 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
844 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
845 * s/hpux10-20.h: ... to the only user, here.
846
847 2010-04-21 Eli Zaretskii <eliz@gnu.org>
848
849 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
850 use buffer-local values of paragraph-start and paragraph-separate.
851 <paragraph_start_re, paragraph_separate_re>: Rename from
852 fallback_paragraph_start_re and fallback_paragraph_separate_re.
853 (Bug#5992)
854
855 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
856
857 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
858 current_tool_bar_style are new.
859 (store_config_changed_event): Rename from store_font_changed_event.
860 (XSETTINGS_TOOL_BAR_STYLE): New define.
861 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
862 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
863 HAVE_XFT.
864 (something_changedCB): store_font_changed_event is now
865 store_config_changed_event
866 (parse_settings): Rename from parse_xft_settings. Read
867 non-xft xsettings outside #ifdef HAVE_XFT.
868 (read_settings): Renamed from read_xft_settings.
869 (apply_xft_settings): Take current settings as parameter. Do not
870 call read_(xft)_settings.
871 (read_and_apply_settings): New function.
872 (xft_settings_event): Do non-xft stuff out of HAVE_XFT. Call
873 read_and_apply_settings if there are settings to be read.
874 (init_xsettings): Renamed from init_xfd_settings.
875 Call read_and_apply_settings unconditionally.
876 (xsettings_initialize): Call init_xsettings.
877 (Ftool_bar_get_system_style): New function.
878 (syms_of_xsettings): Define Qmonospace_font_name and
879 Qtool_bar_style. Initialize current_tool_bar_style to nil.
880 defsubr Stool_bar_get_system_style. Fprovide on
881 dynamic-setting.
882 Move misplaced HAVE_GCONF
883
884 * xsettings.h (Ftool_bar_get_system_style): Declare.
885
886 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
887 Qtext, Qboth, Qboth_horiz are new.
888 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
889 Vtool_bar_style, tool_bar_max_label_size.
890
891 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
892
893 * keyboard.c: QClabel is new.
894 (parse_tool_bar_item): Take out QClabel from tool bar items.
895 Try to construct a label if ther is no QClabel.
896 (syms_of_keyboard): Intern :label as QClabel.
897
898 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
899 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
900 New.
901
902 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
903 dynamic-setting.el.
904
905 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
906 (xg_make_tool_item, xg_show_toolbar_item): New function.
907 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
908 Call xg_make_tool_item to make a tool bar item.
909 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
910
911 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
912 into account for toolbars.
913
914 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
915
916 * data.c (make_blv): Declarations before code (Bug#5993).
917
918 2010-04-21 Glenn Morris <rgm@gnu.org>
919
920 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
921 Define using autoconf, not cpp.
922 (LIBXSM): New variable, set by autoconf.
923 (LIBXT): Use $LIBXSM.
924
925 2010-04-21 Dan Nicolaescu <local_user@dannlt>
926
927 Remove NOMULTIPLEJOBS, unused.
928 * s/template.h (NOMULTIPLEJOBS):
929 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
930
931 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
932 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
933 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
934 detects -znocombreloc and passes it to the linker
935 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
936
937 2010-04-21 Glenn Morris <rgm@gnu.org>
938
939 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
940
941 2010-04-21 Karel Klíč <kklic@redhat.com>
942
943 * Makefile.in (LIBSELINUX_LIBS): New.
944 (LIBES): Add $LIBSELINUX_LIBS.
945 * eval.c, lisp.h (call7): New function.
946 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
947 (Ffile_selinux_context, Fset_file_selinux_context):
948 New functions.
949 (Fcopy_file): New parameter preserve-selinux-context.
950 (Frename_file): Preserve selinux context when renaming by copy-file.
951
952 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
953 Eli Zaretskii <eliz@gnu.org>
954
955 Don't depend on cm.c or termcap.c on Windows, use stubs.
956 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
957 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
958 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
959 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
960 (sys_tputs, sys_tgetstr): New stubs.
961 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
962 (tputs, tgetstr): New; define to sys_*.
963
964 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
965
966 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
967
968 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
969
970 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
971 Just signal a warning rather than an error when inside a let.
972 (Fmake_variable_frame_local): Add the same test.
973
974 * font.c (syms_of_font): Make the style table vars read-only.
975
976 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
977 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
978
979 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
980
981 2010-04-20 Eli Zaretskii <eliz@gnu.org>
982
983 Fix R2L paragraph display on TTY.
984
985 * xdisp.c (unproduce_glyphs): New function.
986 (display_line): Use it when produced glyphs are discarded from R2L
987 glyph rows.
988 (append_composite_glyph): In R2L rows, prepend the glyph rather
989 than appending it.
990
991 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
992 rather than append it. Set up the resolved_level and bidi_type
993 attributes of the appended glyph.
994 (produce_special_glyphs): Mirror the backslash continuation
995 character in R2L lines.
996
997 Implement display of R2L paragraphs in GUI sessions.
998
999 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
1000 append_stretch_glyph.
1001 (set_cursor_from_row) <cursor_x>: Remove unused variable. Fix
1002 off-by-one error in computing x at end of text in the row.
1003 (append_stretch_glyph): In reversed row, prepend the glyph rather
1004 than append it. Set resolved_level and bidi_type of the glyph.
1005 (extend_face_to_end_of_line): If the row is reversed, prepend a
1006 stretch glyph whose width is such that the rightmost glyph will be
1007 drawn at the right margin of the window. Fix off-by-one error on
1008 TTY frames in testing whether a line needs face extension. Fix
1009 face extension at ZV. If this is the last glyph row, use
1010 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
1011 region face.
1012 (set_cursor_from_row, display_line): Use
1013 MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
1014 row->continuation_lines_width.
1015 (next_element_from_buffer): Don't call bidi_paragraph_init if we
1016 are at ZV. Fixes a crash when reseated to ZV by
1017 try_window_reusing_current_matrix.
1018 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
1019 which happens with R2L glyph rows. Fixes a crash when inserting a
1020 character at end of an R2L line.
1021 (set_cursor_from_row): Don't be fooled by truncated rows: don't
1022 treat them as having zero-width characters. Improve comments.
1023 Don't reverse pos_before and pos_after for reversed glyph rows.
1024 Set cursor.x to negative value when the cursor might be on the
1025 left fringe.
1026 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
1027 left fringe, not the right one.
1028 (notice_overwritten_cursor, draw_phys_cursor_glyph)
1029 (erase_phys_cursor): For reversed cursor_row, support cursor on
1030 the left fringe.
1031
1032 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
1033 of continuation indicators on the fringes.
1034 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
1035 left fringe.
1036
1037 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
1038 draw cursor on the left fringe.
1039
1040 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
1041 cursor on the left fringe.
1042
1043 * dispnew.c (update_text_area): Handle reversed desired rows when
1044 the cursor is on the left fringe.
1045 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
1046 below, not by 0, for when the cursor is on the left fringe.
1047
1048 2010-04-20 Jan Djärv <jan.h.d@swipnet.se>
1049
1050 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
1051 widget is a scrollbar.
1052
1053 2010-04-20 Kenichi Handa <handa@m17n.org>
1054
1055 * charset.c (char_charset): Consider Vcharset_non_preferred_head
1056 only when the arg CHARSET_LIST is nil.
1057
1058 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
1059
1060 Make variable forwarding explicit rather the using special values.
1061 Basically, this makes the structure of buffer-local values and object
1062 forwarding explicit in the type of Lisp_Symbols rather than use
1063 special Lisp_Objects for that. This tends to lead to slightly more
1064 verbose code, but is more C-like, simpler, and makes it easier to make
1065 sure we handled all cases, among other things by letting the compiler
1066 help us check it.
1067 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
1068 Removing forwarding objects.
1069 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
1070 (struct Lisp_Symbol): Make the various forms of variable-forwarding
1071 explicit rather than hiding them inside Lisp_Object "values".
1072 (XFWDTYPE): New macro.
1073 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
1074 (XBUFFER_LOCAL_VALUE): Remove.
1075 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
1076 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
1077 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
1078 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
1079 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
1080 Remove the Lisp_Misc_* header.
1081 (struct Lisp_Buffer_Local_Value): Redefine.
1082 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
1083 (struct Lisp_Misc_Any): Add filler to get the right size.
1084 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
1085 Lisp_Intfwd.
1086 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
1087 (DEFVAR_KBOARD): Allocate a forwarding object.
1088 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
1089 (let_shadows_global_binding_p): New function.
1090 (union Lisp_Val_Fwd): New type.
1091 (make_blv): New function.
1092 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
1093 (store_symval_forwarding, swap_in_global_binding, Fboundp)
1094 (swap_in_symval_forwarding, find_symbol_value, Fset)
1095 (let_shadows_buffer_binding_p, set_internal, default_value)
1096 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
1097 (Fkill_local_variable, Fmake_variable_frame_local)
1098 (Flocal_variable_p, Flocal_variable_if_set_p)
1099 (Fvariable_binding_locus):
1100 * xdisp.c (select_frame_for_redisplay):
1101 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
1102 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
1103 * frame.c (store_frame_param):
1104 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
1105 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
1106 value structure.
1107 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
1108 (clone_per_buffer_values): Only adjust markers into the current buffer.
1109 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
1110 (Fbuffer_local_value, set_buffer_internal_1)
1111 (swap_out_buffer_local_variables):
1112 Adapt to the new symbol value structure.
1113 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
1114 (defvar_per_buffer): Take a new arg for the fwd object.
1115 (buffer_lisp_local_variables): Return a proper alist (different fix
1116 for bug#4138).
1117 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
1118 (Fgarbage_collect): Don't handle buffer_defaults specially.
1119 (mark_object): Handle new symbol value structure rather than the old
1120 special Lisp_Misc_* objects.
1121 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
1122 * term.c (set_tty_color_mode):
1123 * bidi.c (bidi_initialize): Don't access the ->value field directly.
1124 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
1125 a buffer_local_flags.
1126 * print.c (print_object): Get rid of impossible forwarding objects.
1127
1128 2010-04-19 Eli Zaretskii <eliz@gnu.org>
1129
1130 * bidi.c (bidi_get_type, bidi_get_category)
1131 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
1132 (bidi_type_of_next_char, bidi_level_of_next_char):
1133 Declare static. Use `INLINE' rather than `inline'.
1134
1135 2010-04-19 Juanma Barranquero <lekktu@gmail.com>
1136
1137 * dired.c (Ffile_attributes): Fix typo in docstring.
1138
1139 2010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
1140
1141 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
1142 NSInteger (Bug#5811).
1143
1144 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1145
1146 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
1147 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
1148
1149 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1150
1151 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
1152
1153 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
1154
1155 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
1156 terminal frames (Bug#5837).
1157
1158 2010-04-19 Eli Zaretskii <eliz@gnu.org>
1159
1160 * .gdbinit (xsubchartable): New command.
1161
1162 2010-04-19 Eli Zaretskii <eliz@gnu.org>
1163
1164 * xdisp.c (display_line): Don't write beyond the last glyph row in
1165 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
1166 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
1167 and
1168 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
1169
1170 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
1171
1172 * alloc.c (Fpurecopy): Hash-cons if requested.
1173 (syms_of_alloc): Update purify-flag docstring.
1174
1175 2010-04-18 Jan Djärv <jan.h.d@swipnet.se>
1176
1177 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
1178 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
1179
1180 2010-04-17 Eli Zaretskii <eliz@gnu.org>
1181
1182 Fix a crash when an NSM character is inserted at BEGV.
1183
1184 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
1185 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
1186 NEUTRAL_B or UNKNOWN_BT.
1187
1188 2010-04-16 Eli Zaretskii <eliz@gnu.org>
1189
1190 * xdisp.c (set_cursor_from_row): Don't consider possibility of
1191 other rows with cursor unless they are different from this row and
1192 this row is part of a continued line. (Bug#5943)
1193
1194 2010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
1195
1196 * s/freebsd.h: Restore osreldate.h include.
1197 Suggested by Naohiro Aota.
1198
1199 2010-04-16 Jan Djärv <jan.h.d@swipnet.se>
1200
1201 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
1202
1203 2010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
1204
1205 * s/cygwin.h: Avoid linking against static libgcc.
1206
1207 2010-04-15 Juri Linkov <juri@jurta.org>
1208
1209 * window.c: Add Qscroll_command.
1210 Remove Vscroll_preserve_screen_position_commands.
1211 (window_scroll_pixel_based, window_scroll_line_based): Check the
1212 `scroll-command' property on the last command instead of searching
1213 the last command in Vscroll_preserve_screen_position_commands.
1214 (syms_of_window): Initialize and staticpro `Qscroll_command'.
1215 Put Qscroll_command property on Qscroll_up and Qscroll_down.
1216 (scroll-preserve-screen-position): Doc fix.
1217 (Vscroll_preserve_screen_position_commands): Remove variable.
1218
1219 2010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
1220
1221 * xdisp.c (message): Do not use NO_ARG_ARRAY.
1222
1223 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
1224
1225 Reduce cpp use in Makefile.in.
1226 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
1227 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
1228 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
1229 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
1230 (CRT0_COMPILE): Remove, inline it in the only user.
1231
1232 2010-04-14 Juri Linkov <juri@jurta.org>
1233
1234 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
1235 `scroll-up-command' and `M-v' from `scroll-down' to
1236 `scroll-down-command'.
1237
1238 2010-04-14 Juri Linkov <juri@jurta.org>
1239
1240 * window.c (Vscroll_preserve_screen_position_commands): New variable
1241 with the default value as the list of Qscroll_down and Qscroll_up.
1242 (window_scroll_pixel_based, window_scroll_line_based): Search the
1243 last command in the list Vscroll_preserve_screen_position_commands
1244 instead of comparing with Qscroll_up and Qscroll_down.
1245
1246 2010-04-13 Jan Djärv <jan.h.d@swipnet.se>
1247
1248 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
1249 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
1250 does that.
1251
1252 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
1253 to zero.
1254
1255 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
1256
1257 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
1258
1259 Try to solve the problem of spurious EOF chars in long lines of text
1260 sent to interactive subprocesses.
1261 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
1262 (system_process_attributes): Remove unused var `ttotal'.
1263 * process.c (send_process): Don't bother breaking long line with EOF
1264 chars when talking to ttys any more.
1265 (wait_reading_process_output): Output a warning when called in such
1266 a way that it could block without being interruptible.
1267
1268 Try to detect file modification within the same second.
1269 * buffer.h (struct buffer): New field modtime_size.
1270 * buffer.c (reset_buffer): Initialize it.
1271 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
1272 (Fverify_visited_file_modtime): Check it.
1273 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
1274 (Fset_visited_file_modtime): Set (or clear) it.
1275
1276 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1277
1278 * process.c (status_notify): Remove unused var `ro'.
1279
1280 2010-04-12 Jan Djärv <jan.h.d@swipnet.se>
1281
1282 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
1283 more than one visual (Bug#5938).
1284
1285 2010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
1286
1287 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
1288 Undefine.
1289
1290 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
1291
1292 Remove C_SWITCH_SYSTEM_TEMACS.
1293 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
1294 (malloc, realloc, free): Use emacs, not temacs for conditional
1295 definition.
1296
1297 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
1298 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
1299
1300 Use autoconf, not cpp for some variables.
1301 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
1302 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
1303 (ALL_CFLAGS): Use them as make variables.
1304 (really-lwlib, really-oldXMenu): Do not pass them.
1305
1306 2010-04-11 Jan Djärv <jan.h.d@swipnet.se>
1307
1308 * xmenu.c (apply_systemfont_to_dialog): New.
1309 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
1310
1311 2010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1312
1313 * process.c (exec_sentinel): Preserve current-buffer.
1314
1315 * process.c (read_process_output): Move the save-current-buffer to
1316 apply to both the filter and the non-filter branches.
1317
1318 2010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
1319
1320 * s/msdos.h (UNEXEC): New definition.
1321
1322 2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1323
1324 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
1325 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
1326
1327 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
1328 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
1329 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
1330 TRY_WINDOW_CHECK_MARGINS.
1331
1332 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
1333 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
1334 width only when it is for padding.
1335
1336 2010-04-09 Jan Djärv <jan.h.d@swipnet.se>
1337
1338 * xfns.c (Fx_show_tip): Call try_window in a loop until
1339 fonts_changed_p is zero (Bug#2423).
1340
1341 2010-04-08 Eli Zaretskii <eliz@gnu.org>
1342
1343 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
1344 the end of TEXT_AREA. (Bug#5856)
1345
1346 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
1347
1348 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
1349 HAVE_GCONF.
1350
1351 2010-04-08 Eli Zaretskii <eliz@gnu.org>
1352
1353 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
1354 prev.orig_type, for resolving type of NSM. (Bug#5858)
1355
1356 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
1357
1358 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
1359 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
1360 in current_font.
1361 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
1362 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
1363 New functions.
1364 (syms_of_xsettings): Initialize current_font.
1365 defsubr Sfont_get_system_normal_font.
1366
1367 * xsettings.h (Ffont_get_system_normal_font,
1368 xsettings_get_system_normal_font): Declare.
1369
1370 * xfns.c (extern xlwmenu_default_font): Remove.
1371 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
1372 to xlwmenu.c.
1373
1374 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
1375 menu items in UTF-8.
1376
1377 * xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
1378 (apply_systemfont_to_menu): New function.
1379 (set_frame_menubar, create_and_show_popup_menu): Call
1380 apply_systemfont_to_menu.
1381
1382 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
1383
1384 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
1385 FRAME_LINE_TO_PIXEL_Y.
1386
1387 * xterm.c (x_set_window_size_1): Don't add border_width/height to
1388 pixelwidth/height.
1389
1390 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
1391
1392 Simplify code for HP machines.
1393 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
1394 for GNU_LINUX, not needed.
1395 (UNEXEC, NEED_BSDTTY): Move definitions...
1396 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
1397
1398 * m/iris4d.h (UNEXEC): Move definition ...
1399 * s/irix6-5.h (UNEXEC): ... here.
1400
1401 2010-04-04 Jan Djärv <jan.h.d@swipnet.se>
1402
1403 * xfns.c (set_machine_and_pid_properties): New function.
1404 (Fx_create_frame): Call set_machine_and_pid_properties.
1405
1406 2010-04-03 Eli Zaretskii <eliz@gnu.org>
1407
1408 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char): Check
1409 bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
1410 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
1411
1412 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
1413 in this function. (Bug#5703)
1414
1415 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
1416
1417 * nsterm.h: Fix last change.
1418
1419 2010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
1420
1421 * m/intel386.h (NO_REMAP): Move definition ...
1422 * s/msdos.h (NO_REMAP): ... here.
1423
1424 * m/vax.h (CRT0_DUMMIES): Remove, unused.
1425
1426 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
1427 used on those platforms.
1428
1429 2010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
1430
1431 Remove extern errno declarations.
1432 * xterm.c:
1433 * xrdb.c:
1434 * w32term.c:
1435 * unexec.c:
1436 * unexaix.c:
1437 * sysdep.c:
1438 * process.c:
1439 * lread.c:
1440 * keyboard.c:
1441 * floatfns.c:
1442 * filelock.c:
1443 * fileio.c:
1444 * emacs.c (main):
1445 * ecrt0.c:
1446 * dispnew.c:
1447 * callproc.c:
1448 * buffer.c: Remove errno extern declarations.
1449 * s/netbsd.h (NEED_ERRNO): Remove.
1450
1451 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
1452
1453 Remove all uses of LIBX11_SYSTEM.
1454 * Makefile.in (LIBX11_SYSTEM): Remove.
1455 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
1456 instead.
1457
1458 2010-04-01 Eli Zaretskii <eliz@gnu.org>
1459
1460 Remove support for DJGPP v1.x (bug#5813).
1461
1462 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
1463 * s/msdos.h:
1464 * unexec.c (make_hdr, copy_text_and_data):
1465 * sysdep.c (wait_for_termination, sys_subshell):
1466 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
1467 (IT_set_terminal_modes, __write, _rename, gethostname)
1468 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
1469 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
1470 the value of __DJGPP__.
1471 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
1472 compatibility code.
1473 * lread.c:
1474 * gmalloc.c (memalign):
1475 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
1476 * emacs.c (main):
1477 * dosfns.c (init_dosfns):
1478 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
1479
1480 2010-04-01 Eli Zaretskii <eliz@gnu.org>
1481
1482 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
1483 string with `cursor' property comes from an `after-string'
1484 overlay. (Bug#5816)
1485
1486 2010-04-01 Glenn Morris <rgm@gnu.org>
1487
1488 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
1489 Define as Makefile variables.
1490 (LIBX): Use above variables rather than directly using autoconf.
1491
1492 2010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
1493
1494 Clean up BSD_SYSTEM use.
1495 * xterm.c:
1496 * process.c:
1497 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
1498 for including <sys/ioctl.h>.
1499 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
1500 code is only used for MSDOS.
1501
1502 2010-03-31 Juri Linkov <juri@jurta.org>
1503
1504 * image.c: Add `Qextension_data'.
1505 (syms_of_image): Initialize and staticpro `Qextension_data'.
1506 (Fimage_metadata): Rename from `Fimage_extension_data'.
1507 (gif_load): Put GIF extension data to the property
1508 `Qextension_data'.
1509
1510 2010-04-05 Chong Yidong <cyd@stupidchicken.com>
1511
1512 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
1513 terminal frames (Bug#5837).
1514
1515 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1516
1517 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
1518 * nsterm.h: Fix prototype.
1519
1520 2010-03-31 Eli Zaretskii <eliz@gnu.org>
1521
1522 * xdisp.c (highlight_trailing_whitespace): Support highlight of
1523 trailing whitespace in right-to-left rows.
1524
1525 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
1526
1527 Get rid of the direct_output optimizations.
1528 * keyboard.c (nonundocount): Remove extern declaration.
1529 (command_loop_1): Remove brittle optimisation for cheap and
1530 common operations.
1531 * xdisp.c (redisplay_internal): Don't bother checking
1532 redisplay_performed_directly_p any more.
1533 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
1534 any more.
1535 * dispnew.c (redisplay_performed_directly_p)
1536 (direct_output_for_insert, direct_output_forward_char):
1537 * dispextern.h (redisplay_performed_directly_p)
1538 (direct_output_for_insert, direct_output_forward_char): Remove.
1539 * cmds.c (nonundocount): Make it static.
1540
1541 2010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
1542
1543 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
1544
1545 2010-03-31 Jan Djärv <jan.h.d@swipnet.se>
1546
1547 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
1548 invisible (Bug#5766).
1549
1550 2010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
1551
1552 * xdisp.c (x_consider_frame_title, update_window_cursor):
1553 Remove HAVE_NS conditionals.
1554 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
1555
1556 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
1557 filename for the title.
1558 (ns_set_doc_edited): Do nothing if the selected window is a
1559 minibuffer window.
1560
1561 * nsterm.h: Add prototypes for ns_set_name_as_filename and
1562 ns_set_doc_edited.
1563
1564 * nsterm.m: Remove unneeded prototype.
1565
1566 2010-03-31 Glenn Morris <rgm@gnu.org>
1567
1568 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
1569 in the DOC file. (Bug#5336)
1570
1571 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
1572
1573 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
1574
1575 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
1576
1577 * window.c (keys_of_window): Remove redundant/overridden bindings.
1578
1579 2010-03-30 Eli Zaretskii <eliz@gnu.org>
1580
1581 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
1582 Restore original behavior when the iterator is not bidi_p.
1583
1584 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
1585
1586 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
1587
1588 2010-03-30 Eli Zaretskii <eliz@gnu.org>
1589
1590 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
1591 are outside the range of cached character positions.
1592
1593 2010-03-30 Juanma Barranquero <lekktu@gmail.com>
1594
1595 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
1596
1597 2010-03-30 Eli Zaretskii <eliz@gnu.org>
1598
1599 Initial support for bidirectional editing.
1600
1601 * Makefile.in (obj): Include bidi.o.
1602 (bidi.o): New target.
1603
1604 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
1605 ($(BLD)/bidi.$(O)): New target.
1606
1607 * bidi.c: New file.
1608
1609 * buffer.h (struct buffer): New members bidi_display_reordering
1610 and bidi_paragraph_direction.
1611
1612 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
1613 and bidi_paragraph_direction.
1614 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
1615 and bidi-paragraph-direction.
1616 (Fbuffer_swap_text): Swap the values of
1617 bidi_display_reordering and bidi_paragraph_direction.
1618
1619 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
1620 (bidi_type_t, bidi_dir_t): New types.
1621 (bidi_saved_info, bidi_stack, bidi_it): New structures.
1622 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
1623 prev_stop, base_level_stop, and eol_pos.
1624 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
1625 (IT_STACK_SIZE): Enlarge to 5.
1626 (struct glyph_row): New member reversed_p.
1627 <string_buffer_position>: Update prototype.
1628 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
1629 glyph_row if bidi_it.paragraph_dir == R2L.
1630 (struct glyph): New members resolved_level and bidi_type.
1631
1632 * dispnew.c (direct_output_forward_char): Give up if we need bidi
1633 processing or buffer's direction is right-to-left.
1634 (prepare_desired_row): Preserve the reversed_p flag.
1635 (row_equal_p): Compare the reversed_p attributes as well.
1636
1637 * xdisp.c (init_iterator): Initialize it->bidi_p. Call
1638 bidi_init_it and set it->paragraph_embedding from the current
1639 buffer's value of bidi_paragraph_direction.
1640 (reseat_1): Initialize bidi_it.first_elt.
1641 (set_iterator_to_next, next_element_from_buffer): Use the value of
1642 paragraph_embedding to determine the paragraph direction.
1643 (set_iterator_to_next): Under bidi reordering, call
1644 bidi_get_next_char_visually. Call bidi_paragraph_init if the
1645 new_paragraph flag is set in the bidi iterator.
1646 (next_element_from_buffer): If bidi_it.first_elt is set,
1647 initialize paragraph direction and find the first character to
1648 display in the visual order. If reseated to a middle of a line,
1649 prime the bidi iterator starting at the line's beginning. Handle
1650 the situation where we overstepped stop_charpos due to
1651 non-linearity of the bidi iteration. Likewise for when we back up
1652 beyond the previous stop_charpos. When moving across stop_charpos,
1653 record it in prev_stop.
1654 (display_line): Set row->end and it->start for the next row to the
1655 next character in logical order. Always extend reversed_p rows to
1656 the end of line, even if they end at ZV. Copy the reversed_p flag
1657 to the next glyph row. Keep calling set_cursor_from_row for
1658 bidi-reordered rows even if we already have a possible candidate
1659 for cursor position. Set row_end after all the row's glyphs have
1660 been produced, by looping over the glyphs. Record the position
1661 after EOL in it->eol_pos, and use it to set end_pos of the last
1662 row produced for a continued line.
1663 <Qright_to_left, Qleft_to_right>: New variables.
1664 (syms_of_xdisp): Initialize and staticpro them.
1665 (string_buffer_position_lim): New function.
1666 (string_buffer_position): Most of code moved to
1667 string_buffer_position_lim. Last argument and return value are
1668 now EMACS_INT; all callers changed.
1669 (set_cursor_from_row): Rewritten to support bidirectional text and
1670 reversed glyph rows.
1671 (text_outside_line_unchanged_p, try_window_id): Disable
1672 optimizations if we are reordering bidirectional text and the
1673 paragraph direction can be affected by the change.
1674 (append_glyph, append_composite_glyph)
1675 (produce_image_glyph, append_stretch_glyph): Set the
1676 resolved_level and bidi_type members of each glyph.
1677 (append_glyph): If the glyph row is reversed, prepend the glyph
1678 rather than appending it.
1679 (handle_stop_backwards): New function.
1680 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
1681 (reseat): call handle_stop_backwards to recompute prev_stop and
1682 base_level_stop for the new position.
1683 (handle_invisible_prop): Under bidi iteration, skip invisible text
1684 using bidi_get_next_char_visually. If we are `reseat'ed, init the
1685 paragraph direction. Update IT->prev_stop after skipping
1686 invisible text.
1687 (move_it_in_display_line_to): New variables prev_method
1688 and prev_pos. Compare for strict equality in
1689 BUFFER_POS_REACHED_P.
1690 (try_cursor_movement): Examine all the candidate rows that occlude
1691 point, to return the best match. If rows are bidi-reordered
1692 and point moved backwards, back up to the row that is not a
1693 continuation line, and start looking for a suitable row from
1694 there.
1695
1696 * term.c (append_glyph): Reverse glyphs by pre-pending them,
1697 rather than appending, if the glyph_row's reversed_p flag is set.
1698 Set the resolved_level and bidi_type members of each glyph.
1699
1700 * .gdbinit (pbiditype): New command.
1701 (pgx): Use it to display bidi level and type of the glyph.
1702 (pitx): Display some bidi information about the iterator.
1703 (prowlims, pmtxrows): New commands.
1704
1705 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
1706
1707 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
1708 * s/usg5-4.h (LIBS_DEBUG):
1709 * s/irix6-5.h (C_DEBUG_SWITCH):
1710 * s/gnu-linux.h (LIBS_DEBUG):
1711 * s/darwin.h (LIBS_DEBUG):
1712 * s/bsd-common.h (LIBS_DEBUG):
1713 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
1714 * m/iris4d.h (LIBS_DEBUG):
1715 * m/hp800.h (LIBS_DEBUG): Remove definitions.
1716
1717 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
1718 (LIBS_DEBUG): Remove definition.
1719
1720 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
1721
1722 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
1723 Windows.
1724
1725 2010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1726
1727 * process.c (Fmake_network_process): Don't call turn_on_atimers around
1728 `connect' (Bug#5723).
1729
1730 2010-03-25 Helmut Eller <eller.helmut@gmail.com>
1731
1732 * process.c (Fmake_network_process): Call `select' for interrupted
1733 `connect' rather than creating new socket (Bug#5173).
1734
1735 2010-03-24 Jan Djärv <jan.h.d@swipnet.se>
1736
1737 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
1738
1739 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
1740
1741 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
1742
1743 2010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1744
1745 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
1746 XLoadQueryFont.
1747
1748 2010-03-24 Kenichi Handa <handa@m17n.org>
1749
1750 * coding.c (decode_coding_ccl): Fix previous change for the
1751 multibyte case.
1752 (encode_coding_ccl): Don't setup ccl program here. Fix for the
1753 case that the output buffer is fullfilled.
1754 (encode_coding): Setup ccl program here.
1755
1756 2010-03-24 Andreas Politz <politza@fh-trier.de> (tiny change)
1757
1758 * editfns.c (Fformat): Account for string precision when computing
1759 field width (Bug#5710).
1760
1761 2010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
1762
1763 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
1764
1765 Simplify LIBS_MACHINE definitions.
1766 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
1767 * m/iris4d.h (LIBS_MACHINE): Likewise.
1768 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
1769 * s/aix4-2.h (LIBS_SYSTEM): ... here.
1770 * s/netbsd.h: Remove commented out code.
1771
1772 2010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
1773
1774 Remove dead code dealing with POSIX_SIGNALS.
1775 * atimer.c (set_alarm): Remove dead code, all USG systems define
1776 POSIX_SIGNALS.
1777 * data.c (arith_error): Likewise.
1778 * keyboard.c (input_available_signal, handle_user_signal)
1779 (interrupt_signal): Likewise.
1780 * process.c (sigchld_handler): Likewise.
1781 (create_process): Remove if 0 code. Remove HPUX conditional when
1782 !defined (POSIX_SIGNALS), it cannot be true.
1783 * syssignal.h: Remove USG5_4 and USG conditionals when
1784 !POSIX_SIGNALS, they cannot be true.
1785
1786 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
1787 NO_SOCK_SIGIO, not used anymore.
1788
1789 2010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
1790
1791 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
1792 support vax on BSDs.
1793
1794 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
1795 * s/aix4-2.h (ORDINARY_LINK): ... here.
1796
1797 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
1798
1799 * Makefile.in (abs_builddir): Define.
1800 (bootstrap_exe): Use it.
1801 (VPATH): Use $(srcdir) instead of @srcdir@.
1802
1803 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
1804
1805 * Makefile.in (bootstrap_exe): Use an absolute name.
1806
1807 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
1808
1809 Remove support for old GNU/Linux using libc version 5.
1810 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
1811 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
1812
1813 Consolidate redundant definitions in s/bsd-common.h.
1814 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
1815 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
1816 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
1817 doing it in all files that include this one.
1818 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
1819 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
1820 (LDAV_SYMBOL, KERNEL_FILE): Remove.
1821 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
1822 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
1823 (LDAV_SYMBOL, KERNEL_FILE): Remove.
1824 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
1825 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
1826 (LDAV_SYMBOL, KERNEL_FILE): Remove.
1827
1828 Consolidate redundant definitions.
1829 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
1830 it's undefined in all files that include this one.
1831 (POSIX_SIGNALS): Define here instead of doing it in all files that
1832 include this one.
1833 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
1834 (POSIX_SIGNALS): Do not define.
1835 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
1836 (POSIX_SIGNALS): Do not define.
1837 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
1838 (POSIX_SIGNALS): Do not define.
1839
1840 Remove support for old UNIX System V systems.
1841 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
1842 * s/usg-5-4-2.h: Remove.
1843
1844 Remove support for Solaris on PPC and for old versions.
1845 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
1846 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
1847 that cancel each other.
1848 * s/sol2-3.h:
1849 * s/sol2-4.h:
1850 * s/sol2-5.h: Remove.
1851 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
1852 (NO_REMAP): Remove, unused.
1853 (UNEXEC): Move definition ...
1854 * s/aix4-2.h (UNEXEC): ... here.
1855
1856 * s/openbsd.h: Remove support for non-ELF and for systems that do
1857 not support shared libraries.
1858 * s/netbsd.h:
1859 * s/freebsd.h: Likewise.
1860
1861 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
1862
1863 Remove non-working support for lynxos 3.0.
1864 * s/lynxos.h: Remove file.
1865
1866 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
1867 COFF_BSD_SYMBOLS, nothing defines it anymore.
1868
1869 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
1870
1871 Remove obsolete uses of HAVE_SHM.
1872 * emacs.c (standard_args):
1873 (Fdump_emacs):
1874 (syms_of_emacs): Remove code depending on HAVE_SHM.
1875
1876 * alloc.c: Remove HAVE_SHM dependent definition.
1877
1878 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
1879
1880 2010-03-18 Glenn Morris <rgm@gnu.org>
1881
1882 * emacs.c (USAGE4): Hard-code bug address.
1883 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
1884 (bug_reporting_address): Remove.
1885 (main): Don't call bug_reporting_address.
1886
1887 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
1888 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
1889
1890 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
1891
1892 * xfns.c (Fx_create_frame):
1893 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
1894 on left.
1895
1896 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
1897
1898 * editfns.c (Fformat): Account for string precision when computing
1899 field width (Bug#5710).
1900
1901 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
1902
1903 * xfns.c (Fx_create_frame): Set default to Qright.
1904
1905 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
1906 all window systems.
1907
1908 2010-03-12 Eli Zaretskii <eliz@gnu.org>
1909
1910 These changes remove termcap.c from the build on Posix platforms.
1911 * Makefile.in (termcapobj): Move termcap.o from here...
1912 (MSDOS_OBJ): ...to here.
1913 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
1914 now identical to when LIBS_TERMCAP is defined.
1915
1916 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
1917
1918 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
1919
1920 * config.in: Regenerated. (See top-level ChangeLog.)
1921
1922 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
1923
1924 * Branch for 23.2.
1925
1926 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
1927
1928 Cleanup setup of gl_state in various parts of the code.
1929 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
1930 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
1931 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
1932 (skip_chars):
1933 * regex.c (regex_compile): Use it.
1934 (re_compile_pattern): Don't set gl_state.current_syntax_table since
1935 it's now set in regex_compile when/if we need it.
1936
1937 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
1938
1939 Make it possible to C-g in a tight bytecode loop again (bug#5680).
1940 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
1941 (QUIT): Use it to consolidate code and remove redundancy.
1942 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
1943
1944 * regex.c (regex_compile): Setup gl_state as well.
1945
1946 * syntax.c (skip_chars): Setup gl_state (bug#3823).
1947 (in_classes): Use CONSP before XCAR/XCDR.
1948
1949 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
1950
1951 * keymap.c (Fwhere_is_internal): Use Fequal to compare
1952 definitions, so that keyboard macros are correctly handled
1953 (Bug#5481).
1954
1955 2010-03-02 Eli Zaretskii <eliz@gnu.org>
1956
1957 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
1958 text that could be relocated inside the call to emacs_mule_char.
1959 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
1960 (CODING_DECODE_CHAR): Add a comment describing its purpose.
1961
1962 2010-03-02 Kenichi Handa <handa@m17n.org>
1963
1964 * character.c (parse_str_as_multibyte): Fix handling of the
1965 multibyte form of raw-bytes.
1966 (str_as_multibyte): Likewise.
1967
1968 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
1969 form of raw-bytes.
1970
1971 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
1972
1973 * charset.c (load_charset_map_from_file)
1974 (load_charset_map_from_vector): Zero out allocated
1975 charset_map_entries before using them.
1976
1977 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
1978
1979 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
1980
1981 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
1982
1983 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
1984 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
1985
1986 2010-02-26 Kenichi Handa <handa@m17n.org>
1987
1988 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
1989
1990 * xdisp.c (reseat_to_string): Fix previous change.
1991
1992 2010-02-26 David Reitter <david.reitter@gmail.com>
1993
1994 * nsfont.m (nsfont_draw): ns_antialias_text should be a
1995 Lisp_Object (Bug#4736).
1996
1997 2010-02-25 Kenichi Handa <handa@m17n.org>
1998
1999 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
2000
2001 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
2002
2003 * xterm.c (XTflash): Move declarations before statements.
2004
2005 * gtkutil.c (xg_get_gdk_display): Remove (unused).
2006 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
2007 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
2008 (xg_create_tool_bar): Remove unused variables.
2009 (x_wm_set_size_hint): Move declarations before statements.
2010 (xg_create_frame_widgets): Remove variable grav,
2011
2012 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
2013
2014 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
2015
2016 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
2017
2018 * term.c (fatal): Add a final \n if needed (bug#5596).
2019
2020 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
2021
2022 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
2023
2024 2010-02-18 Glenn Morris <rgm@gnu.org>
2025
2026 * callint.c (Finteractive): Doc fix.
2027
2028 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
2029
2030 * coding.c (record_conversion_result):
2031 Handle CODING_RESULT_INSUFFICIENT_DST.
2032 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
2033 memory allocation error.
2034
2035 2010-02-17 Kenichi Handa <handa@m17n.org>
2036
2037 * coding.c (decode_coding_ccl): Don't setup ccl program here.
2038 Fix for the case that the output buffer is fullfilled.
2039 (decode_coding): Setup ccl program here. Keep looping when the
2040 decoder stopped because the output buffer is
2041 fullfilled (bug#5534).
2042
2043 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
2044
2045 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
2046
2047 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
2048 bug #5571.
2049 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
2050 overdrawn.
2051
2052 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
2053
2054 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
2055 doing_interact here.
2056 (ice_connection_closed): New function.
2057 (x_session_check_input, smc_die_CB, ice_io_error_handler)
2058 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
2059 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
2060 returns I/O error.
2061 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
2062 bug #5512.
2063
2064 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
2065
2066 * nsfont.m (nsfont_open): The system's value for the font descent
2067 is negative, so round it down to avoid clipping.
2068
2069 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
2070
2071 * charset.c (load_charset_map_from_file)
2072 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
2073 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
2074
2075 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
2076
2077 * charset.c (load_charset_map_from_file): Allocate large
2078 charset_map_entries structure on the heap rather than the stack.
2079 (Bug#5526).
2080
2081 2010-01-31 Kenichi Handa <handa@m17n.org>
2082
2083 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
2084 size in NAME is invalid, return -1 (Bug#5396).
2085
2086 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
2087
2088 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
2089 <deactivated@gmail.com> (Bug#3605).
2090
2091 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
2092
2093 * fileio.c (Frename_file): Correctly rename symlinks to
2094 directories (Bug#5496).
2095
2096 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
2097
2098 * nsterm.m (ns_ring_bell): Handle visible bell like X.
2099
2100 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
2101
2102 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
2103
2104 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
2105
2106 * frame.c (DEFAULT_ROWS): Change default to 35.
2107
2108 * xfns.c (x_default_font_parameter): Change default XFT font to
2109 monospace-10 (Bug#3643).
2110
2111 2010-01-29 Eli Zaretskii <eliz@gnu.org>
2112
2113 * w32inevt.c (key_event): Remove unnecessary comparison of
2114 event->uChar.AsciiChar with 128.
2115
2116 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
2117
2118 * fileio.c (Frename_file): Fix last change (Bug#5487).
2119
2120 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
2121
2122 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
2123
2124 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
2125
2126 * xfns.c (Fx_create_frame): Remove window size matching code from
2127 2010-01-15.
2128 (x_get_current_desktop, x_get_desktop_workarea): Remove
2129
2130 2010-01-27 Jason Rumney <jasonr@gnu.org>
2131
2132 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
2133 (key_event): Use unicode for characters 128 and higher (Bug#4567).
2134
2135 2010-01-27 Kenichi Handa <handa@m17n.org>
2136
2137 * regex.c (analyse_first): Fix setting of fastmap for unibyte
2138 pattern string (Bug#4209).
2139
2140 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
2141
2142 * fileio.c (Frename_file): Call copy-directory and
2143 delete-directory for directories, in order to handle cross-device
2144 renaming (Bug#3353).
2145
2146 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
2147
2148 * xfns.c (Fx_create_frame): If frame height is too big, try
2149 sizes 24 and 10. Bug #3643.
2150
2151 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
2152
2153 Try and fix bug#788, hopefully for real this time.
2154 * keymap.c (shadow_lookup): Add `remap' arg.
2155 (describe_map, describe_vector): Update calls to shadow_lookup.
2156 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
2157 `remapped' so this flag is applicable to `sequence'. Be careful to
2158 perform remapping during shadow_lookup check of remapped_sequences.
2159
2160 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
2161
2162 * image.c (png_load): Use png_sig_cmp instead of the obsolete
2163 png_check_sig, which has been removed in libpng 1.4.
2164
2165 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
2166
2167 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
2168 lacks this header file).
2169
2170 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2171
2172 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
2173 as in Emacs 22.
2174
2175 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2176
2177 * lisp.h (make_pure_string): String pointer arg now points to const.
2178
2179 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
2180 args now point to const.
2181
2182 2010-01-22 Eli Zaretskii <eliz@gnu.org>
2183
2184 * lread.c (Fload): Don't treat files without .elc extension as
2185 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
2186 them. (bug#5303)
2187
2188 2010-01-20 Kenichi Handa <handa@m17n.org>
2189
2190 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
2191 treat the source as actual byte sequence.
2192
2193 2010-01-19 Alan Mackenzie <acm@muc.de>
2194
2195 Fix spurious before-change-functions invocation from (insert ?\n).
2196 * textprop.c (set_text_properties): Rename parameter
2197 `signal_after_change_p' to `coherent_change_p', and make the
2198 invocation of `modify_region' conditional on it.
2199
2200 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
2201
2202 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
2203 for debug purpose.
2204 (syms_of_xsettings): Declare xft-settings.
2205
2206 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
2207
2208 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
2209
2210 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
2211
2212 * xterm.c (event_handler_gdk): Block input (Bug#5037).
2213
2214 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
2215
2216 * emacs.c (standard_args): Adjust arg priorities to reflect how
2217 they are processed in startup.el.
2218
2219 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
2220
2221 * Makefile.in (lisp, shortlisp): Update.
2222
2223 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
2224
2225 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
2226 code, link the new kboard into all_kboard before running Lisp code,
2227 and protect the new terminal with GCPRO (Bug#5365).
2228 (x_term_init): Remove unused var `atom'.
2229 (x_delete_display, x_delete_terminal): Remove unused var `i'.
2230
2231 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
2232
2233 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
2234 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
2235 to find out usable size of the desktop. Don't make frames larger than
2236 this. Bug #3643.
2237
2238 2010-01-15 Kenichi Handa <handa@m17n.org>
2239
2240 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
2241
2242 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
2243
2244 * nsterm.m (Qnone): Define.
2245
2246 * nsfns.m (Qnone): Move definition to nsterm.m.
2247
2248 2010-01-14 Kenichi Handa <handa@m17n.org>
2249
2250 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
2251 systems.
2252
2253 2010-01-14 Kenichi Handa <handa@m17n.org>
2254
2255 Make auto-composition work on all buffers even if they are
2256 fundamental mode.
2257
2258 * composite.c (Vauto_composition_mode): New variable.
2259 (composition_compute_stop_pos): Check Vauto_composition_mode
2260 instead of Vauto_composition_function.
2261 (composition_adjust_point, Ffind_composition_internal): Likewise.
2262 (syms_of_composite): Declare Lisp variable
2263 "auto-composition-mode" here.
2264
2265 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
2266
2267 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
2268 during call to vendor-specific-keysyms (Bug#5365).
2269
2270 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2271
2272 * keyboard.c (input_available_signal) [SYNC_INPUT]:
2273 Call SIGNAL_THREAD_CHECK (Bug#5333).
2274
2275 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
2276 Call SIGNAL_THREAD_CHECK.
2277
2278 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
2279
2280 Try to fix bug#5314. This is probably not the final word, tho.
2281 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
2282 recent-auto-save-p as a side-effect.
2283 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
2284 * buffer.c (Fkill_buffer, reset_buffer):
2285 * editfns.c (Fsubst_char_in_region):
2286 * fileio.c (Finsert_file_contents, Fdo_auto_save)
2287 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
2288
2289 2010-01-13 Kenichi Handa <handa@m17n.org>
2290
2291 Display buffer name, etc. in mode line by composing correctly.
2292
2293 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
2294 STRING is not nil.
2295 (display_mode_element): Adjust for the change of
2296 decode_mode_spec and display_line.
2297 (decode_mode_spec): Change arg MULTIBYTE to STRING.
2298 (display_string): Handle the case that STRING is non-null and
2299 LISP_STRING is not nil.
2300
2301 * xterm.c (x_draw_composite_glyph_string_foreground):
2302 Pay attention to s->face->overstrike.
2303
2304 * composite.c (composition_reseat_it): Don't check PT if STRING is
2305 non nil.
2306
2307 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2308
2309 * keyboard.c (read_char): Don't apply previous change when current
2310 buffer is unchanged by command execution.
2311
2312 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
2313
2314 * keyboard.c (read_char): Return after executing from special map.
2315
2316 2010-01-12 Glenn Morris <rgm@gnu.org>
2317
2318 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
2319 bug-gnu-emacs rather than emacs-pretest-bug.
2320
2321 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
2322
2323 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
2324 initializing the Lisp variables that depend on them.
2325
2326 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2327
2328 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
2329 Clear areas that will not be updated after change of menu bar lines.
2330 Clear the menu bar window's current matrix when the window gets empty.
2331
2332 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
2333
2334 * intervals.h, textprop.c (extend_property_ranges): Return value
2335 and args changed. Discard properties that begin at or after the
2336 new end (Bug#5306).
2337
2338 * editfns.c (Fformat): Caller changed.
2339
2340 * nsterm.m (ns_set_default_prefs): Delete function.
2341 (syms_of_nsterm): Initialize ns_command_modifier,
2342 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
2343 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
2344
2345 * xdisp.c (pos_visible_p): Check for invisible text at the correct
2346 position (Bug#4040).
2347
2348 2010-01-09 Eli Zaretskii <eliz@gnu.org>
2349
2350 * editfns.c (Ffloat_time): Doc fix.
2351
2352 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
2353
2354 * xfns.c (Fx_create_frame): Don't create frame larger than display
2355 by default bug#3643.
2356
2357 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2358
2359 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
2360 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
2361 windows above internal border.
2362
2363 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
2364 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
2365 windows above internal border.
2366
2367 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
2368 tool bar windows specially.
2369
2370 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
2371
2372 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
2373 specially.
2374 (XTflash): Take account of menu bar height.
2375
2376 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
2377 specially.
2378
2379 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
2380
2381 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
2382 also be true before we can return early (bug #5339).
2383
2384 2010-01-06 David Reitter <david.reitter@gmail.com>
2385
2386 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
2387 (Fns_display_usable_bounds): Rewrite, computing bounds properly
2388 (Bug#3233).
2389
2390 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
2391
2392 * font.c (font_open_entity): Enable chache and call cached_font_ok
2393 for the driver if defined.
2394 (QCuser_spec): New symbol.
2395 (font_spec_from_name): Save name as user-spec.
2396 (font_load_for_lface): Keep user-spec instead of name.
2397 (font_open_by_name): Save name as user-spec.
2398 (syms_of_font): Initialize QCuser_spec.
2399 (font_clear_prop): Clear name if it exists in font (bug#5157).
2400
2401 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
2402 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
2403 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
2404
2405 * font.h (struct font_driver): Add cached_font_ok.
2406
2407 * xterm.c (x_clear_frame): Queue draw for scroll bars.
2408
2409 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
2410
2411 * xterm.c (x_new_font): Move code for setting rows/cols before
2412 resizing ...
2413 (x_set_window_size): ... to here. Bug #2568.
2414
2415 * gtkutil.c (xg_clear_under_internal_border): New function.
2416 (xg_frame_resized, xg_frame_set_char_size):
2417 Call xg_clear_under_internal_border.
2418 (xg_update_scrollbar_pos): Clear under old scroll bar position.
2419
2420 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
2421
2422 * keyboard.c (read_key_sequence): Catch keyboard switch after
2423 making a new tty frame (Bug#5095).
2424
2425 2010-01-05 Kenichi Handa <handa@m17n.org>
2426
2427 * fontset.c (fontset_find_font): Fix getting the frame pointer.
2428
2429 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
2430
2431 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
2432 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
2433 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
2434
2435 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
2436
2437 * dbusbind.c (xd_add_watch): Improve debug message.
2438 (xd_remove_watch): Improve debug message. If DATA is the session
2439 bus, unset D-Bus session environment.
2440 (Fdbus_init_bus): Pass the bus as argument to
2441 dbus_connection_set_watch_functions. (Bug#5283)
2442
2443 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
2444
2445 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
2446
2447 * lread.c (syms_of_lread): Make it clearer that these are the
2448 names of loaded files (Bug#5068).
2449
2450 * eval.c (run_hook_with_args): Handle the case where the global
2451 value has the obsolete single-function form (Bug#5026).
2452
2453 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
2454
2455 * minibuf.c (Fall_completions): Minor optimization.
2456
2457 2009-12-26 Eli Zaretskii <eliz@gnu.org>
2458
2459 * .gdbinit (pgx): Fix display of composite glyphs.
2460 Display cmp.from and cmp.to as well.
2461 (pitx): Fix last change.
2462
2463 2009-12-25 Kenichi Handa <handa@m17n.org>
2464
2465 * composite.h (composition_adjust_point): Update prototype.
2466
2467 * composite.c (composition_reseat_it): Don't make a composition
2468 spanning over point.
2469 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
2470 composable characters.
2471 (composition_adjust_point): New arg NEW_PT. Callers changed.
2472
2473 * keyboard.c (command_loop_1): Force redisplay if the last point
2474 was within a composition.
2475 (adjust_point_for_property): Don't adjust point for automatic
2476 composition when called after buffer modification.
2477
2478 2009-12-19 Eli Zaretskii <eliz@gnu.org>
2479
2480 * .gdbinit (pitx): Don't use enum names, use their values.
2481 Remove reference to non-existing value GET_FROM_COMPOSITION.
2482 (pgx): Don't use enum names, use their values.
2483 (pitmethod): New helper command.
2484 (pitx): Use it to display iteration method.
2485 (pgrowit): New command.
2486
2487 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
2488
2489 Update dependencies in Makefile.in.
2490
2491 * Makefile.in (alloc.o): Depend on termhooks.h.
2492 (atimer.o): Depend on blockinput.h.
2493 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
2494 and frame.h.
2495 (callint.o): Depend on systime.h, coding.h, and composite.h.
2496 (callproc.o): Depend on buffer.h.
2497 (casefiddle.o): Don't depend on charset.h.
2498 (casetab.o): Depend on character.h.
2499 (ccl.o): Depend on composite.h.
2500 (chartab.o): Depend on ccl.h.
2501 (cm.o): Depend on dispextern.h.
2502 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
2503 (coding.o): Don't depend on $(INTERVALS_H).
2504 (composite.o): Don't depend on dispextern.h explicitly (it's in
2505 $(INTERVALS_H)). Depend on ccl.h.
2506 (data.o): Depend on systime.h, coding.h, composite.h,
2507 dispextern.h, font.h, and ccl.h.
2508 (dired.o): Depend on composite.h.
2509 (dispnew.o): Depend on coding.h. Don't depend explicitly on
2510 composite.h (it's in $(INTERVALS_H)).
2511 (doc.o): Depend on systime.h, coding.h, and composite.h.
2512 (editfns.o): Don't depend explicitly on dispextern.h.
2513 (emacs.o): Depend on frame.h and coding.h.
2514 (eval.o): Depend on coding.h, composite.h, and xterm.h.
2515 (fileio.o): Depend on frame.h and commands.h. Don't depend
2516 explicitly on dispextern.h.
2517 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
2518 composite.h.
2519 (fns.o): Don't depend on termhooks.h.
2520 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
2521 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
2522 coding.h, $(INTERVALS_H), window.h, xterm.h.
2523 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
2524 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
2525 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
2526 fontset.h, ccl.h, and ftfont.h.
2527 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
2528 (gtkutil.o): Depend on dispextern.h and composite.h.
2529 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
2530 termhooks.h, and ccl.h.
2531 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
2532 (intervals.o): Depend on systime.h and coding.h.
2533 (keyboard.o): Depend on composite.h and coding.h.
2534 (keymap.o): Depend on coding.h and frame.h.
2535 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
2536 (macros.o): Depend on systime.h, coding.h, and composite.h.
2537 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
2538 and atimer.h.
2539 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
2540 dispextern.h explicitly.
2541 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
2542 Don't depend explicitly on dispextern.h and composite.h.
2543 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
2544 (regex.o): Don't depend on charset.h.
2545 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
2546 (search.o): Don't depend explicitly on composite.h.
2547 (sound.o): Depend on atimer.h and systime.h.
2548 (syntax.o): Don't depend explicitly on composite.h.
2549 (sysdep.o): Depend on coding.h and composite.h.
2550 (term.o): Depend on xterm.h and buffer.h.
2551 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
2552 (textprop.o): Don't depend on dispextern.h explicitly.
2553 (undo.o): Depend on dispextern.h.
2554 (window.o): Depend on coding.h and termhooks.h. Don't depend on
2555 dispextern.h and composite.h explicitly.
2556 (xdisp.o): Depend on ccl.h.
2557 (xfaces.o): Depend on coding.h and ccl.h.
2558 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
2559 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
2560 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
2561 ftfont.h.
2562 (xgselect.o): New dependency.
2563 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
2564 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
2565 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
2566 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
2567 (xsmfns.o): Depend on frame.h and dispextern.h.
2568 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
2569 sysselect.h.
2570
2571 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
2572
2573 * font.c (Fclear_font_cache): Pass correct cache argument to
2574 font_clear_cache.
2575
2576 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
2577
2578 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
2579 twice.
2580
2581 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
2582
2583 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
2584 calling file-remote-p. Reported by Jim Meyering.
2585
2586 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
2587
2588 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
2589 avoid compiler warnings. (Bug #5217)
2590
2591 2009-12-14 Kenichi Handa <handa@m17n.org>
2592
2593 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
2594 in 8-bit encoding.
2595
2596 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
2597
2598 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
2599 tooltip windows.
2600
2601 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
2602
2603 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
2604 Xatom_net_window_type.
2605
2606 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
2607 Xatom_net_window_type.
2608
2609 * xterm.c (my_log_handler): New function.
2610 (x_term_init): Set my_log_handler as log handler during gtk_init
2611 so we can filter out buggy messages. (Bug #5120).
2612
2613 * xterm.c (xg_scroll_callback): Parameter list changed,
2614 use parameter GtkScrollType to determine scroll/line/page.
2615 Only allow dragging if a button < 4 is grabbed (bug #5177).
2616 (xg_end_scroll_callback): New function.
2617 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
2618 xg_create_scroll_bar.
2619
2620 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
2621 (scroll_end_callback): Remove.
2622 (xg_create_scroll_bar): Add parameter end_callback, bind it to
2623 button-release-event. Replace value-changed event with change-value,
2624 bug #5177,
2625 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
2626 bug #5177.
2627
2628 * gtkutil.h (XG_LAST_SB_DATA): Remove.
2629 (xg_create_scroll_bar): Add GCallback end_callback.
2630
2631 * xftfont.c (QClcdfilter): New variable.
2632 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
2633 (syms_of_xftfont): Initialize QClcdfilter.
2634
2635 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
2636
2637 * xsettings.c (struct xsettings): Add member seen.
2638 (parse_xft_settings): Update member seen with what we have read.
2639 Return non-zero if Xft-settings have been parsed, 0 otherwise.
2640 (apply_xft_settings): Only update Xft settings with what member seen
2641 indicates as new.
2642
2643 2009-12-12 Eli Zaretskii <eliz@gnu.org>
2644
2645 * dispextern.h (struct text_pos): Use EMACS_INT;
2646 (struct glyph): Use EMACS_INT for charpos.
2647 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
2648 region_beg_charpos, region_end_charpos,
2649 redisplay_end_trigger_charpos, and also for
2650 iterator_stack_entry.end_charpos and
2651 iterator_stack_entry.stop_charpos.
2652
2653 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
2654
2655 * gtkutil.c (scroll_end_callback): New function (bug #5177).
2656 (xg_create_scroll_bar): Call scroll_end_callback on button release
2657 event (bug #5177).
2658 (xg_event_is_for_scrollbar): != replaced with ==.
2659
2660 2009-12-12 Kenichi Handa <handa@m17n.org>
2661
2662 * ftfont.c (struct ftfont_info): New member matrix.
2663 (ftfont_open): Setup xftfont_info->matrix.
2664 (MFLTFontFT): New member matrix.
2665 (FLOOR, CEIL, ROUND): New macros.
2666 (ftfont_get_metrics): Handle matrix transformation.
2667 (ftfont_shape_by_flt): New arg matrix. Callers changed.
2668
2669 * xftfont.c (struct xftfont_info): New member matrix.
2670 (xftfont_open): Setup xftfont_info->matrix.
2671
2672 2009-12-10 Kenichi Handa <handa@m17n.org>
2673
2674 * xdisp.c (append_space_for_newline): Consider face-remapping.
2675
2676 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
2677
2678 * xsettings.c: Include "keyboard.h".
2679
2680 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
2681
2682 Fix implicit function declarations.
2683 * cmds.c: Include "frame.h".
2684 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
2685 * frame.h: Move declaration of delete_frame outside of
2686 HAVE_WINDOW_SYSTEM.
2687
2688 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
2689
2690 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
2691
2692 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
2693 GTK builds.
2694
2695 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
2696
2697 * unexelf.c (unexec): Don't search for .data twice.
2698
2699 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
2700
2701 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
2702 if push failed.
2703 (handle_line_prefix): Set avoid_cursor_p here. Check return value
2704 of push_display_prop (Bug#5000).
2705
2706 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
2707 value of font_list_entities (Bug#5085).
2708
2709 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
2710
2711 Fix `string-to-number' to deal consistently with integers and floats.
2712 * lread.c (isfloat_string): New argument ignore_trailing to accept all
2713 trailing characters, not just whitespace.
2714 (read1): Pass new arg 0 to keep old behavior.
2715 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
2716 trailing chars, as it is already done for integers. Doc fixes.
2717 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
2718
2719 2009-12-04 Eli Zaretskii <eliz@gnu.org>
2720
2721 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
2722 Delete unused enumeration value.
2723
2724 2009-12-03 Eli Zaretskii <eliz@gnu.org>
2725
2726 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
2727
2728 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
2729
2730 * process.c (Fmake_network_process): Fix up the tests for
2731 "connectionless socket", so they DTRT for seqpacket sockets as well.
2732
2733 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
2734
2735 * process.c (Qseqpacket): New symbol.
2736 (HAVE_SEQPACKET): New macro.
2737 (Fmake_network_process): Accept new :type `seqpacket'.
2738 (init_process): Add `seqpacket' feature when applicable.
2739 (syms_of_process): Initialize Qseqpacket.
2740
2741 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2742
2743 * font.c (font_load_for_lface, font_open_by_name): Don't store name
2744 if entity is Qnil.
2745
2746 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
2747
2748 * print.c (print_preprocess): Preprocess the key_and_value table of
2749 hashtables, even tho they're "hidden" (bug#5082).
2750
2751 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
2752
2753 * frame.c (frame_make_pointer_invisible)
2754 (frame_make_pointer_visible): Declare f before statements.
2755
2756 2009-11-28 Eli Zaretskii <eliz@gnu.org>
2757
2758 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
2759 omitted dependencies on lisp.h.
2760
2761 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
2762
2763 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
2764 is NULL.
2765
2766 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
2767
2768 * frame.c (frame_make_pointer_invisible)
2769 (frame_make_pointer_visible): Just return if there isn't any selected
2770 frame.
2771
2772 * search.c (simple_search): Remove warning by making *p const.
2773
2774 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
2775
2776 * xdisp.c (power_letter): Remove duplicate const.
2777
2778 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
2779
2780 * term.c (delete_tty): Remove check for last terminal (bug#4970).
2781
2782 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
2783 defaults (bug #5025).
2784
2785 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
2786
2787 * insdel.c (adjust_markers_for_delete): Move it in the
2788 right direction! (bug#4803)
2789
2790 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2791
2792 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
2793
2794 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
2795
2796 2009-11-24 Glenn Morris <rgm@gnu.org>
2797
2798 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
2799
2800 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
2801
2802 * Makefile.in: Must create deps for ecrt0.o in its rule.
2803
2804 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
2805 because that is what Gtk+ font dialog understands.
2806
2807 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
2808 of Fcopy_sequence.
2809 (font_open_by_name): Put name given into QCname for font-object returned.
2810
2811 * frame.c (x_set_font): Save original font name as frame parameter
2812 font-parameter.
2813
2814 * xsettings.c (set_default_xft_settings): New function.
2815 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
2816 is found.
2817
2818 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
2819
2820 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
2821 searching backwards through multibyte buffer.
2822
2823 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
2824
2825 * xterm.c: #include xgselect.h.
2826 (x_initialize): Call xgselect_initialize.
2827
2828 * xsettings.c (something_changedCB): C++ comments => C comments.
2829 (init_gconf): Do not deal with any GLib file descriptors, xg_select
2830 does that now.
2831
2832 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
2833 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
2834 (scroll_bar_button_cb): Remove.
2835 (create_menus): C++ comments => C comments. Don't bind grab-notify
2836 event.
2837 (xg_create_scroll_bar): Don't bind button-press-event and
2838 button-release-event.
2839
2840 * process.c: Include xgselect.h if defined (USE_GTK) ||
2841 defined (HAVE_GCONF).
2842 (wait_reading_process_output): Call xg_select for the same condition.
2843
2844 * xgselect.c (xg_select): New function to better integrate with
2845 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
2846
2847 * xgselect.h: New file, declare xg_select, xgselect_initialize.
2848
2849 * Makefile.in (XOBJ): Add xgselect.o.
2850
2851 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
2852
2853 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
2854 Remove ignored second argument. All callers changed.
2855 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
2856 (RE_STRING_CHAR_AND_LENGTH): Likewise.
2857 * xdisp.c (string_char_and_length): Likewise.
2858
2859 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
2860
2861 * xterm.c (x_new_font):
2862 * print.c (print_object):
2863 * cmds.c (Fself_insert_command): Move declarations before statements.
2864
2865 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
2866
2867 * s/cygwin.h: Remove unneeded linker flags.
2868
2869 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
2870
2871 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
2872
2873 * xsettings.h: Declare xsettings_get_system_font.
2874
2875 * xsettings.c (xsettings_get_system_font): New function.
2876 (init_gconf): No use initiating gconf unless we have Xft also.
2877 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
2878 HAVE_GCONF.
2879
2880 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
2881 add a blank entry so it doesn't collapse into nothing.
2882
2883 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
2884
2885 * lread.c (Funintern): Comment out last change.
2886
2887 2009-11-19 Richard Stallman <rms@gnu.org>
2888
2889 * lread.c (Funintern): Error if symbol is t or nil.
2890
2891 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
2892
2893 * insdel.c (make_gap_larger): Don't make as many assumptions about the
2894 representation of Lisp integers.
2895 Reported by MJ Chan <mjchan.inbox@gmail.com>.
2896
2897 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
2898
2899 * lisp.h: Remove declaration of Ffont_get_system_font.
2900 * xfns.c: Move include of "xsettings.h".
2901 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
2902
2903 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
2904
2905 * xsettings.c (something_changedCB, Ffont_get_system_font):
2906 Check use_system_font.
2907 (syms_of_xsettings): DEFVAR font-use-system-font.
2908
2909 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
2910
2911 * xfns.c (x_default_font_parameter): Remove dead assignment.
2912
2913 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
2914
2915 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
2916
2917 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
2918 not have FC_LCD_*. #define them if not there.
2919
2920 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
2921
2922 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
2923
2924 * xterm.c (handle_one_xevent): Call xft_settings_event for
2925 ClientMessage, PropertyNotify and DestroyNotify.
2926 (x_term_init): If we have XFT, get DPI from Xft.dpi.
2927 Call xsettings_initialize.
2928
2929 * xftfont.c (xftfont_fix_match): New function.
2930 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
2931 Call xftfont_fix_match after XftFontMatch.
2932
2933 * xfont.c (xfont_driver): Initialize all members.
2934
2935 * xfns.c (x_default_font_parameter):
2936 Try font from Ffont_get_system_font.
2937 Do not get font from x_default_parameter if we got one from
2938 Ffont_get_system_font.
2939 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
2940
2941 * w32font.c (w32font_driver): Initialize all members.
2942
2943 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
2944
2945 * lisp.h: Declare syms_of_xsettings.
2946
2947 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
2948 Handle CONFIG_CHANGED_EVENT.
2949
2950 * ftfont.c (ftfont_filter_properties): New function.
2951
2952 * frame.c (x_set_font): Remove unused variable lval.
2953
2954 * font.h (struct font_driver): Add filter_properties.
2955
2956 * font.c (font_put_extra): Don't return if val is nil, it means
2957 boolean option is off.
2958 (font_parse_fcname): Collect all extra properties in extra_props
2959 and call filter_properties for all drivers with extra_props and
2960 font as parameter.
2961 (font_open_entity): Do not use cache, it does not pick up new
2962 fontconfig settings like hinting.
2963 (font_load_for_lface): If spec had a name in it, store it in entity.
2964
2965 * emacs.c (main): Call syms_of_xsettings
2966
2967 * config.in: HAVE_GCONF is new.
2968
2969 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
2970 xsettings.o is new.
2971
2972 2009-11-17 Kenichi Handa <handa@m17n.org>
2973
2974 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
2975 back to the default font in case that no suitable font is found.
2976
2977 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
2978
2979 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
2980 Suggested by Chad Brown <yandros@mit.edu>.
2981 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
2982
2983 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
2984
2985 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
2986
2987 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
2988
2989 * Makefile.in: Ignore errors from mkdir when creating deps directory.
2990
2991 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
2992
2993 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
2994 has a parent.
2995
2996 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
2997 dependency files in deps/. Include those files into Makefile.
2998
2999 * config.in: Generated (AUTO_DEPEND).
3000
3001 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
3002
3003 * dbusbind.c (Vdbus_registered_objects_table): Rename from
3004 Vdbus_registered_functions_table, because it contains also
3005 properties. Fix docstring.
3006 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
3007
3008 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3009
3010 * alloc.c (mark_object): Don't reprocess marked strings.
3011 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
3012 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
3013
3014 2009-11-13 Kenichi Handa <handa@m17n.org>
3015
3016 * category.c (word_boundary_p): Adjust for the change of the
3017 semantics of Vword_combining_categories.
3018 (Vword_combining_categories): Describe the slight change of the
3019 semantics.
3020
3021 2009-11-13 Eli Zaretskii <eliz@gnu.org>
3022
3023 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
3024
3025 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
3026
3027 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
3028
3029 * xdisp.c (syms_of_xdisp): Fix typo in last change.
3030
3031 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
3032
3033 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
3034
3035 2009-11-11 David Reitter <david.reitter@gmail.com>
3036
3037 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
3038 variables to fix 2009-11-09 change.
3039
3040 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
3041
3042 * process.c (ifflag_def): Make flag_sym constant.
3043 (Fnetwork_interface_info): Use a constant pointer.
3044 (ifflag_table):
3045 * xfns.c (cursor_bits):
3046 * xdisp.c (power_letter):
3047 * termcap.c (speeds, esctab):
3048 * sysdep.c (baud_convert):
3049 * keyboard.c (lispy_accent_codes, modifier_names):
3050 * image.c (xbm_format, xpm_format, pbm_format, png_format)
3051 (jpeg_format, tiff_format, gif_format, svg_format)
3052 (interlace_start, interlace_increment, gs_format):
3053 * gtkutil.c (separator_names):
3054 * fringe.c (swap_nibble):
3055 * fns.c (base64_value_to_char, base64_char_to_value):
3056 * fileio.c (make_temp_name_tbl):
3057 * coding.c (suffixes): Make constant.
3058
3059 * frame.c (make_initial_frame):
3060 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
3061 build_string.
3062 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
3063
3064 * s/freebsd.h:
3065 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
3066
3067 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
3068 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
3069
3070 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
3071 * xterm.c (syms_of_xterm):
3072 * xfaces.c (syms_of_xfaces):
3073 * xdisp.c (syms_of_xdisp):
3074 * lread.c (syms_of_lread):
3075 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
3076 build_string.
3077
3078 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
3079
3080 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3081
3082 * fns.c (Fplist_get): Merge the active and the commented out code.
3083
3084 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
3085
3086 * keyboard.h: Declare timer_check.
3087
3088 * keyboard.c (timer_check_2): New function that does what the old
3089 timer_check did.
3090 (timer_check): Call timer_check_2 until -1 or a non-zero time is
3091 returned, i.e. don't return -1 with timers pending.
3092
3093 * process.c: Remove extern declaration of timer_check.
3094
3095 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
3096 even if timer_check returned -1.
3097
3098 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
3099 xg_dialog_data.
3100 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
3101 the event loop.
3102 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
3103 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
3104 Destroy the dialog after xg_dialog_run.
3105
3106 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3107
3108 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
3109
3110 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
3111
3112 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
3113
3114 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
3115
3116 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
3117
3118 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3119
3120 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
3121 w32menu.c, and nsmenu.m.
3122 Simplify the obsolete case where position is nil.
3123 (cleanup_popup_menu): New function, moved from nsmenu.m.
3124 (struct skp): Remove slot `notreal'.
3125 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
3126 adjust callers.
3127 (single_menu_item): Adjust call to parse_menu_item.
3128 (syms_of_menu): Defsubr x-popup-menu.
3129 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
3130 (keymap_panes): Don't export any more.
3131 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
3132 (xmenu_show): Declare.
3133 * keyboard.c (parse_menu_item): Remove arg `notreal'.
3134 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
3135 * keyboard.h (parse_menu_item): Update declaration.
3136 * xmenu.c (Fx_popup_menu): Remove.
3137 (syms_of_xmenu): Don't defsubr x-popup-menu.
3138 * w32menu.c (Fx_popup_menu): Remove.
3139 (syms_of_w32menu): Don't defsubr x-popup-menu.
3140 * nsmenu.m (cleanup_popup_menu): Remove.
3141 (ns_menu_show): Rename from ns_popup_menu and remove all the code
3142 moved to menu.c's Fx_popup_menu.
3143 (Fx_popup_menu): Remove.
3144 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
3145 menu_items (it's done in menu.c already).
3146
3147 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3148
3149 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
3150 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
3151
3152 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
3153
3154 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
3155 xmenu_show. Hide any tooltip before opening a menu.
3156 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
3157 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
3158
3159 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
3160
3161 Let integers use up 2 tags to give them one extra bit and thus double
3162 their range.
3163 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
3164 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
3165 New macros.
3166 (enum Lisp_Type): Use them. Give explicit values.
3167 (Lisp_Type_Limit): Remove.
3168 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
3169 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
3170 Pay attention to USE_2_TAGS_FOR_INTS.
3171 (INTEGERP): Use LISP_INT_TAG_P.
3172 * fns.c (internal_equal): Simplify the default case.
3173 (sxhash): Use case_Lisp_Int.
3174 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
3175 any more.
3176 (Ftype_of): Use case_Lisp_Int.
3177 (store_symval_forwarding): Take into account the fact that Ints can
3178 now have more than one tag.
3179 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
3180 buffer_slot_type_mismatch):
3181 * xfaces.c (face_attr_equal_p):
3182 * print.c (print_object):
3183 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
3184 Use case_Lisp_Int.
3185
3186 2009-11-06 Eli Zaretskii <eliz@gnu.org>
3187
3188 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
3189
3190 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
3191 warning.
3192
3193 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
3194
3195 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
3196
3197 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
3198
3199 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
3200 ButtonPressRelease and MotionNotify (bug#4870).
3201
3202 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
3203
3204 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
3205
3206 * xterm.c (syms_of_xterm):
3207 * xselect.c (syms_of_xselect):
3208 * xmenu.c (syms_of_xmenu):
3209 * xfns.c (syms_of_xfns):
3210 * xfaces.c (syms_of_xfaces):
3211 * xdisp.c (syms_of_xdisp):
3212 * window.c (syms_of_window):
3213 * w32fns.c (syms_of_w32fns):
3214 * undo.c (syms_of_undo):
3215 * textprop.c (syms_of_textprop):
3216 * terminal.c (syms_of_terminal):
3217 * syntax.c (syms_of_syntax):
3218 * sound.c (syms_of_sound):
3219 * search.c (syms_of_search):
3220 * print.c (syms_of_print):
3221 * minibuf.c (syms_of_minibuf):
3222 * macros.c (syms_of_macros):
3223 * keymap.c (syms_of_keymap, initial_define_key)
3224 (initial_define_lispy_key):
3225 * keyboard.c (syms_of_keyboard):
3226 * insdel.c (syms_of_insdel):
3227 * image.c (syms_of_image):
3228 * fringe.c (syms_of_fringe):
3229 * frame.c (syms_of_frame):
3230 * fontset.c (syms_of_fontset):
3231 * fns.c (syms_of_fns):
3232 * fns.c (syms_of_fns):
3233 * fileio.c (syms_of_fileio):
3234 * fileio.c (syms_of_fileio):
3235 * eval.c (syms_of_eval):
3236 * doc.c (syms_of_doc):
3237 * dispnew.c (syms_of_display):
3238 * dired.c (syms_of_dired):
3239 * dbusbind.c (syms_of_dbusbind):
3240 * data.c (syms_of_data):
3241 * composite.c (syms_of_composite):
3242 * coding.c (syms_of_coding):
3243 * cmds.c (syms_of_cmds):
3244 * charset.c (define_charset_internal, syms_of_character):
3245 * ccl.c (syms_of_ccl):
3246 * category.c (syms_of_category, init_category_once):
3247 * casetab.c (syms_of_casetab):
3248 * casefiddle.c (syms_of_casefiddle):
3249 * callint.c (syms_of_callint):
3250 * bytecode.c (syms_of_bytecode):
3251 * buffer.c (keys_of_buffer, syms_of_buffer):
3252 * alloc.c (syms_of_alloc):
3253 * process.c (syms_of_process, init_process):
3254 * lread.c (syms_of_lread, init_obarray):
3255 * font.c (build_style_table):
3256 * emacs.c (syms_of_emacs, main): Replace calls to intern with
3257 intern_c_string, calls to make_pure_string with
3258 make_pure_c_string. Use pure_cons instead of Fcons.
3259
3260 * process.c (socket_options): Make it const.
3261 (set_socket_option, init_process): Use a const pointer.
3262
3263 * lread.c (intern_c_string): New function.
3264 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
3265 (defvar_int): Uset it. Make the name const char*.
3266
3267 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
3268 (defvar_int): Update prototypes.
3269 (DEFUN, EXFUN): Support for prototypes is now required.
3270 (intern_c_string): New prototype.
3271 (struct Lisp_Subr): Make symbol_name constant.
3272
3273 * font.c (struct table_entry): Remove unused member. Make NAMES
3274 constant.
3275 (weight_table, slant_table, width_table): Make constant.
3276
3277 * emacs.c (struct standard_args): Make name and longname constant.
3278
3279 * character.h (DEFSYM): Use intern_c_string.
3280
3281 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
3282
3283 * alloc.c (make_pure_c_string): New function.
3284
3285 * eval.c (Fautoload): Purecopy all arguments.
3286
3287 2009-11-05 Kenichi Handa <handa@m17n.org>
3288
3289 * fileio.c (Finsert_file_contents): Be sure set coding-system of
3290 the buffer in case of replace.
3291
3292 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
3293
3294 * puresize.h (BASE_PURESIZE): Increase to 1620000.
3295
3296 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
3297
3298 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
3299 when applicable (bug#4851).
3300
3301 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
3302 (P_): Support for prototypes is now required.
3303
3304 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
3305
3306 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
3307 (Bug#4827).
3308
3309 2009-10-30 Eli Zaretskii <eliz@gnu.org>
3310
3311 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
3312
3313 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
3314
3315 * puresize.h (BASE_PURESIZE): Increase to 1470000.
3316
3317 * lread.c (Fload): Purecopy the file name when building
3318 Vpreloaded_file_list.
3319
3320 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
3321
3322 * w32fns.c (syms_of_w32fns): Change default value of
3323 w32-scroll-lock-modifier to nil. (Bug#2827)
3324
3325 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
3326
3327 * minibuf.c (Fall_completions): Fix typos in docstring.
3328
3329 2009-10-26 Andreas Schwab <schwab@redhat.com>
3330
3331 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
3332
3333 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
3334
3335 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
3336 For delta < 0, skip check that only makes sense when the mini-window
3337 is going to be enlarged. (Bug#4534)
3338
3339 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
3340
3341 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
3342 string in menu maps (Bug#4471).
3343
3344 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
3345
3346 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
3347 FRAME_NS_VIEW on terminal frames (Bug#4765).
3348
3349 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
3350
3351 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
3352 DBUS_TYPE_UINTnn separately to get proper sign extension.
3353
3354 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
3355 can properly handle unsigned types.
3356 (make_uid, make_gid): Remove.
3357
3358 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
3359 types again.
3360
3361 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
3362 (system_process_attributes): Likewise.
3363
3364 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
3365
3366 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
3367
3368 * eval.c (Fautoload): Purecopy the filename. Simplify.
3369
3370 * category.c (Fdefine_category): Purecopy docstring.
3371
3372 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
3373
3374 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
3375
3376 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
3377
3378 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
3379
3380 * window.c (Fwindow_edges, Fwindow_pixel_edges)
3381 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
3382 (Bug#4775).
3383
3384 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
3385
3386 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
3387 (init_fileio_once):
3388 * lisp.h (init_fileio_once): Remove.
3389 * emacs.c (main): Don't call init_fileio_once.
3390
3391 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
3392
3393 * puresize.h (BASE_PURESIZE): Increase to 1430000.
3394
3395 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
3396
3397 * doprnt.c (doprnt): Fix overflow check.
3398
3399 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
3400
3401 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
3402
3403 * xterm.h (x_wait_for_event): Declare it.
3404
3405 * xterm.c (pending_event_wait): New variable.
3406 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
3407 see pending_event_wait.eventtype.
3408 (handle_one_xevent): Don't change gravity when parent changes.
3409 (x_new_font): Call change_frame_size with new rows/columns before we
3410 try to resize the frame.
3411 (x_wait_for_event): New function.
3412 (x_set_window_size_1): Don't change gravity unless change_gravity
3413 is set.
3414 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
3415 don't change frame size, instead wait for the ConfigureNotify.
3416 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
3417 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
3418 (x_initialize): Initialize pending_event_wait.
3419
3420 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
3421 size.
3422
3423 * widget.c (EmacsFrameSetValues): Add comment.
3424 (EmacsFrameSetCharSize): Just call x_set_window_size.
3425
3426 * gtkutil.c (xg_frame_set_char_size): Flush events and call
3427 x_wait_for_event.
3428 (flush_and_sync): Remove again.
3429 (xg_get_font_name): Suggest monospace if no previous font is known.
3430
3431 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
3432
3433 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
3434 8th bit, since that only made sense in the ASCII world (bug#4751).
3435
3436 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3437
3438 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
3439 processing pending events when event is filtered for input method.
3440 (Bug#3681)
3441
3442 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
3443
3444 * fns.c: Add #endif accidentally removed in previous change.
3445
3446 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
3447
3448 * fns.c: Remove code for unsupported system: MAC_OS.
3449 * image.c: Likewise. Include setjmp.h.
3450
3451 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
3452
3453 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
3454 pixel -1 (bug #4742).
3455
3456 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
3457
3458 * process.c (create_pty): Remove conditionals for no longer
3459 supported systems: UNIPLUS and RTU.
3460
3461 * xterm.c:
3462 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
3463
3464 * alloc.c: Do not define struct catchtag.
3465 * eval.c: Move struct catchtag definition ...
3466 * lisp.h: ... here.
3467
3468 * image.c: Move png.h #include earlier to avoid warnings.
3469
3470 * xterm.c:
3471 * xsmfns.c:
3472 * xselect.c:
3473 * xrdb.c:
3474 * xmenu.c:
3475 * xftfont.c:
3476 * xfont.c:
3477 * xfns.c:
3478 * xfaces.c:
3479 * xdisp.c:
3480 * window.c:
3481 * widget.c:
3482 * w32xfns.c:
3483 * w32uniscribe.c:
3484 * w32term.c:
3485 * w32select.c:
3486 * w32reg.c:
3487 * w32proc.c:
3488 * w32menu.c:
3489 * w32inevt.c:
3490 * w32heap.c:
3491 * w32font.c:
3492 * w32fns.c:
3493 * w32console.c:
3494 * w32.c:
3495 * w16select.c:
3496 * vm-limit.c:
3497 * unexsol.c:
3498 * unexec.c:
3499 * unexcw.c:
3500 * unexaix.c:
3501 * undo.c:
3502 * tparam.c:
3503 * textprop.c:
3504 * terminfo.c:
3505 * terminal.c:
3506 * termcap.c:
3507 * term.c:
3508 * syntax.c:
3509 * sound.c:
3510 * sheap.c:
3511 * search.c:
3512 * scroll.c:
3513 * region-cache.c:
3514 * regex.c:
3515 * ralloc.c:
3516 * process.c:
3517 * print.c:
3518 * nsterm.m:
3519 * nsselect.m:
3520 * nsmenu.m:
3521 * nsimage.m:
3522 * nsfont.m:
3523 * nsfns.m:
3524 * msdos.c:
3525 * minibuf.c:
3526 * menu.c:
3527 * marker.c:
3528 * macros.c:
3529 * keymap.c:
3530 * keyboard.c:
3531 * intervals.c:
3532 * insdel.c:
3533 * indent.c:
3534 * gtkutil.c:
3535 * ftxfont.c:
3536 * ftfont.c:
3537 * fringe.c:
3538 * frame.c:
3539 * fontset.c:
3540 * font.c:
3541 * fns.c:
3542 * floatfns.c:
3543 * filelock.c:
3544 * fileio.c:
3545 * emacs.c:
3546 * editfns.c:
3547 * dosfns.c:
3548 * doprnt.c:
3549 * doc.c:
3550 * dispnew.c:
3551 * dired.c:
3552 * dbusbind.c:
3553 * data.c:
3554 * composite.c:
3555 * coding.c:
3556 * cmds.c:
3557 * cm.c:
3558 * chartab.c:
3559 * charset.c:
3560 * character.c:
3561 * ccl.c:
3562 * category.c:
3563 * casetab.c:
3564 * casefiddle.c:
3565 * callproc.c:
3566 * callint.c:
3567 * bytecode.c:
3568 * buffer.c:
3569 * atimer.c: Include setjmp.h. (Bug#4643)
3570
3571 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
3572
3573 Remove leftover table unibyte_to_multibyte_table.
3574 * character.c (unibyte_to_multibyte_table): Remove.
3575 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
3576 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
3577 * character.h (UNIBYTE_TO_CHAR): New macro.
3578 (MAKE_CHAR_MULTIBYTE): Use it.
3579 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
3580 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
3581 (message_dolog, set_message_1):
3582 * search.c (Freplace_match):
3583 * editfns.c (Fcompare_buffer_substrings):
3584 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
3585 (concat):
3586 * insdel.c (copy_text, count_size_as_multibyte):
3587 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
3588 * term.c (produce_glyphs):
3589 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
3590 * regex.c (RE_CHAR_TO_MULTIBYTE):
3591 * cmds.c (internal_self_insert):
3592 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
3593
3594 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
3595
3596 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
3597
3598 * puresize.h (BASE_PURESIZE): Increase to 1310000.
3599
3600 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
3601
3602 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
3603
3604 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
3605
3606 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
3607 still needed under Tiger.
3608
3609 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
3610
3611 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
3612 __Apple__.
3613
3614 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
3615
3616 2009-10-15 Kenichi Handa <handa@m17n.org>
3617
3618 * print.c (print_object): Escape a symbol like "2E10" too.
3619
3620 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
3621
3622 Cleanups and changes for 64-bit compile under Snow Leopard.
3623 Based on suggestions by Erik Charlebois.
3624
3625 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
3626
3627 * nsfont.m (ns_char_width): Replace deprecated call.
3628 (ns_findfonts, nsfont_list_family): Use long format in printf, and
3629 cast argument.
3630 (nsfont_open): Use ns_char_width() everywhere.
3631 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
3632
3633 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
3634
3635 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
3636 where appropriate.
3637
3638 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
3639 where appropriate.
3640 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
3641 Use stringWithUTF8String.
3642 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
3643
3644 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
3645 Add formal protocol mention to inheritance.
3646 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
3647
3648 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
3649 Fix printf format.
3650 (ns_query_color): Use CGFloat where appropriate.
3651 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
3652 (EmacsScroller-mouseDown:): Use long format in printf, and cast
3653 argument.
3654
3655 * config.in (NS_HAVE_NSINTEGER): Drop.
3656
3657 * dbusbind.c (dbus-method-return-internal)
3658 (dbus-method-error-internal): Use long format in printf, and cast
3659 argument.
3660
3661 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
3662 in printf, and cast argument.
3663
3664 * process.c (list_processes_1): Use long format in printf, and
3665 cast argument.
3666
3667 2009-10-11 Glenn Morris <rgm@gnu.org>
3668
3669 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
3670
3671 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
3672
3673 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
3674 menu bar with a small width so it doesn't enlarge the frame.
3675
3676 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
3677
3678 * fontset.c (Fset_fontset_font): Fix typos in error messages.
3679
3680 2009-10-06 Glenn Morris <rgm@gnu.org>
3681
3682 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
3683 SOME_MACHINE_LISP (this enters indirectly via DOC).
3684
3685 2009-10-05 Eli Zaretskii <eliz@gnu.org>
3686
3687 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
3688
3689 2009-10-04 Eli Zaretskii <eliz@gnu.org>
3690
3691 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
3692 Doc fix.
3693
3694 2009-10-03 Martin Rudalics <rudalics@gmx.at>
3695
3696 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
3697
3698 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
3699
3700 * lisp.h (Qdelete_directory_internal): Remove, because it is not
3701 used anymore outside fileio.c.
3702
3703 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
3704
3705 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
3706
3707 * lisp.h (Qdelete_directory_internal):
3708 Declare, instead of Qdelete_directory.
3709
3710 * w32fns.c (Fsystem_move_file_to_trash): Use it.
3711
3712 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
3713
3714 * eval.c (Fcalled_interactively_p): Add `kind' argument.
3715
3716 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
3717
3718 * fileio.c (Fdelete_directory_internal): Rename from
3719 Fdelete_directory. It is not a command anymore. It has no file
3720 name handler.
3721
3722 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
3723
3724 * xdisp.c (get_next_display_element): Use an enum in last change.
3725
3726 2009-09-28 Kenichi Handa <handa@m17n.org>
3727
3728 * xdisp.c (get_next_display_element): Pay attention to
3729 unibyte_display_via_language_environment in handling
3730 Vnobreak_char_display.
3731
3732 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
3733
3734 * nsterm.h (ns_app_name): New extern variable.
3735
3736 * nsterm.m (ns_app_name): New variable.
3737 (ns_term_init): Set and use it.
3738 (ns_term_shutdown): Use it.
3739
3740 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
3741 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
3742
3743 * nsfns.m (ns_set_name_iconic, ns_set_name)
3744 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
3745 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
3746
3747 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
3748 Remove double-casting in client_data comparison.
3749
3750 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3751
3752 * keyboard.c (make_lispy_event): Remember last wheel direction.
3753 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
3754
3755 2009-09-26 Glenn Morris <rgm@gnu.org>
3756
3757 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
3758 internal.elc. Add term/pc-win.elc.
3759 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
3760 term/x-win.elc.
3761 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
3762 term/w32-win.elc.
3763 (NS_SUPPORT): New.
3764 (lisp): Add NS_SUPPORT.
3765 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
3766
3767 2009-09-25 David Reitter <david.reitter@gmail.com>
3768
3769 * nsmenu.m (EmacsMenu-clear): Recognize application menu
3770 on Mac OS X 10.6+ (bug#4513).
3771
3772 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
3773
3774 * frame.c (xrdb_get_resource): Return nil for empty string resources;
3775 some parts of Emacs code (like font selection) don't grok them.
3776 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
3777
3778 2009-09-24 Andreas Schwab <schwab@redhat.com>
3779
3780 * coding.c (decode_coding_iso_2022): Fix operator precedence.
3781
3782 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
3783
3784 * dired.c (Fdirectory_files): Fix typo in docstring.
3785
3786 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
3787
3788 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
3789 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
3790 (EmacsScroller-setPosition:portion:whole:): Remove -display call
3791 under GNUstep.
3792 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
3793
3794 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
3795 glyph advancement.
3796
3797 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
3798
3799 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
3800 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
3801
3802 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
3803 deleted (bug #4492).
3804
3805 * nsfont.m (Vns_reg_to_script): New lisp variable.
3806 (syms_of_nsfont): Declare it.
3807 (ns_registry_to_script): New function.
3808 (ns_get_req_script): Call it.
3809 (ns_findfonts): Don't give up on non-unicode registry.
3810
3811 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
3812
3813 2009-09-20 Tom Tromey <tromey@redhat.com>
3814
3815 * eval.c (find_handler_clause): Make stack-trace-on-error work in
3816 batch mode (bug#4228).
3817
3818 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
3819
3820 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
3821 carefully. (Bug #4339)
3822
3823 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
3824
3825 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
3826
3827 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
3828
3829 * emacs.c (inhibit_x_resources): Update doc string for NS.
3830 (main) [HAVE_NS]: Don't process --no-init-file option. Remove
3831 legacy code for -NXHost. Fix error printf in daemon case.
3832
3833 * nsterm.h (ns_no_defaults): Remove.
3834
3835 * nsterm.m (ns_no_defaults): Remove.
3836 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
3837 (ns_use_qd_smoothing): Remove legacy variable.
3838 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
3839 don't update the NSWindow itself.
3840 (EmacsView-windowWillUseStandardFrame:defaultFrame:): Improve
3841 state detection and store user rect ourselves. (Bug #3581)
3842
3843 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
3844 ns_use_qd_smoothing.
3845
3846 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
3847 platform versions. Drop support for emacs-20-style face specs.
3848 (x-close-connection): Drop PSFlush() under OS X.
3849 (x-focus-frame): Activate the app first. (Bug #4180)
3850
3851 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
3852
3853 * emacs.c (inhibit_x_resources): New variable.
3854 (main) [HAVE_NS]: Don't process --quick command line option.
3855 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
3856
3857 * lisp.h (inhibit_x_resources): Declare it extern.
3858
3859 * w32reg.c (x_get_string_resource):
3860 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
3861
3862 2009-09-17 Eli Zaretskii <eliz@gnu.org>
3863
3864 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
3865 Add lisp/term/internal.elc.
3866
3867 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
3868
3869 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
3870 (bug#4461).
3871
3872 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
3873
3874 * puresize.h (BASE_PURESIZE): Increase to 1290000.
3875
3876 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
3877 (OBJECTS_MACHINE): Remove, unused.
3878
3879 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
3880
3881 * frame.c (x_get_resource_string): Remove unused.
3882
3883 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
3884
3885 * xterm.c (x_new_font): Call change_frame_size before calling
3886 x_set_window_size, in case frame size won't change.
3887
3888 * frame.c (x_set_font): Remove dead code.
3889
3890 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
3891
3892 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
3893
3894 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3895
3896 * lread.c (Fload): Don't output a message after loading an obsolete
3897 package any more (done in Lisp now).
3898
3899 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
3900
3901 * fns.c (syms_of_fns): Doc fix (Bug#4227).
3902
3903 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3904
3905 * keymap.c (Fwhere_is_internal): Use nconc2.
3906
3907 2009-09-11 Alan Mackenzie <acm@muc.de>
3908
3909 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
3910 batch mode.
3911
3912 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
3913
3914 * xdisp.c (display_mode_element): Detect cycles.
3915
3916 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
3917
3918 * keymap.c (where_is_internal): Don't erroneously return nil right after
3919 filling the cache.
3920 (where_is_internal_1): Fix up typo.
3921
3922 2009-09-11 Glenn Morris <rgm@gnu.org>
3923
3924 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
3925 share a common doc-string.
3926
3927 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
3928
3929 * keymap.c (get_keymap): Return the actual keymap symbol rather than
3930 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
3931
3932 * keymap.c (QCadvertised_binding): New constant.
3933 (syms_of_keymap): Initialize it.
3934 (Fwhere_is_internal): Try and use bindings from :advertised-binding
3935 if applicable.
3936
3937 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
3938
3939 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
3940 (parse_menu_item): Streamline since bindings are recomputed all the
3941 time anyway. Don't bother checking Vdefine_key_rebound_commands any
3942 more and don't support lmenu's menu-alias any more either.
3943
3944 * keymap.c (where_is_internal_data): Make noindirect a boolean.
3945 (where_is_internal): Strip it down to only traverse the keymaps.
3946 Move the cache handling from Fwhere_is_internal to here.
3947 (Fwhere_is_internal): Move the handling of remapping and the choice of
3948 the best binding from where_is_internal to here.
3949 Unify the cached/noncached paths, so remapping is also handled
3950 correctly when the cache is used, and so the cache can be used to
3951 speed up remap-handling when applicable.
3952 Give preference to non-remapped bindings.
3953 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
3954 non-remapped bindings.
3955 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
3956 command remapping.
3957
3958 * xdisp.c (display_mode_element): Move list length limit from 50 to
3959 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
3960
3961 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
3962
3963 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
3964
3965 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
3966
3967 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
3968 (Bug#4334)
3969
3970 * keymap.c (where_is_internal): Filter out shadowed remappings.
3971 Assume that where_is_internal returns unshadowed bindings to simplify
3972 the code and get rid of the gotos. Use ASIZE.
3973
3974 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
3975
3976 * xterm.c (x_focus_changed): If we get a focusout and pointer
3977 is invisible, make it visible.
3978
3979 * xterm.h: Remove condition for declaration of
3980 x_*_window_to_frame.
3981
3982 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
3983
3984 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
3985 initial terminal as well.
3986
3987 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
3988
3989 * xterm.h: Rename x_non_menubar_window_to_frame to
3990 x_menubar_window_to_frame.
3991
3992 * xterm.c: Remove declarations also in xterm.h.
3993 (XTmouse_position): Do not return valid positions
3994 for clicks in the menubar and the toolbar for Gtk+.
3995
3996 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
3997 if the widget for the event has the same top level as a frame,
3998 return the frame.
3999 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
4000 internal windows, bug #4122.
4001 (x_non_menubar_window_to_frame): Remove.
4002
4003 2009-09-02 Glenn Morris <rgm@gnu.org>
4004
4005 * buffer.c (default-major-mode): Move most of the doc from here...
4006 (major-mode): ... to here.
4007
4008 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
4009
4010 * process.c (wait_reading_process_output): Keep the descriptor
4011 when pty is used by a non-child process, e.g., in I/O buffer of
4012 GDB this allows inferior to be restarted.
4013
4014 2009-08-29 Eli Zaretskii <eliz@gnu.org>
4015
4016 * xdisp.c (redisplay_internal): Remove redundant test and collapse
4017 both branches into one.
4018
4019 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
4020
4021 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
4022 (main): Use enable-multibyte-characters rather than
4023 default-enable-multibyte-characters. Output a warning message when
4024 running a unibyte session.
4025
4026 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4027
4028 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
4029 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
4030 (copy_data_segment): Also copy __program_vars section.
4031 (copy_dyld_info) [LC_DYLD_INFO]: New function.
4032 (dump_it) [LC_DYLD_INFO]: Use it.
4033
4034 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
4035
4036 2009-08-28 Eli Zaretskii <eliz@gnu.org>
4037
4038 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
4039 $(SRC)/buildobj.h.
4040 (buildobj.h): Renamed from $(SRC)/buildobj.h.
4041 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
4042 $(SRC)/buildobj.h.
4043 (clean): Add buildobj.h.
4044
4045 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
4046
4047 * print.c (print_object): Set escapeflag to 1 when printing
4048 hashtable keys and values.
4049
4050 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
4051
4052 * lread.c (read_integer): Use doubles (and potentially return a float
4053 number) as we do in string-to-number.
4054 (read1): Use strtol to read integers, signal errors on strtol's
4055 overflow and use floats if strtol's output is too large for
4056 Elisp integers.
4057
4058 2009-08-27 Eli Zaretskii <eliz@gnu.org>
4059
4060 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
4061 (make-buildobj-SH): Fix last change.
4062 (SRC): Move to before where it's first used.
4063
4064 2009-08-27 Kenichi Handa <handa@m17n.org>
4065
4066 * process.c (send_process): Use encode_coding_object instead of
4067 encode_coding_string to perform eol-conversion even if the string
4068 is unibyte.
4069
4070 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
4071 character.
4072
4073 * cmds.c (Fself_insert_command): Avoid unnecessay
4074 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
4075
4076 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
4077
4078 * callproc.c (Fcall_process): Remove always true #if.
4079
4080 * lisp.h: Replace #if 0 code for checking with text pointing to
4081 the --enable-checking configure flag.
4082
4083 * emacs.c (main): Mention the --enable-profiling configure flag
4084 instead of using CFLAGS.
4085
4086 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
4087
4088 * Makefile.in (buildobj.h): New target.
4089 (doc.o): Depend on it.
4090 (temacs${EXEEXT}): Don't generate buildobj.lst.
4091 (mostlyclean): Delete buildobj.h, not buildobj.lst.
4092 * makefile.w32-in ($(SRC)/buildobj.h): New target.
4093 ($(BLD)/doc.$(O)): Depend on it.
4094 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
4095 provided by Eli Zaretskii.)
4096 ($(TEMACS)): Don't generate buildobj.lst.
4097 * doc.c: Include buildobj.h.
4098 (buildobj): New static variable.
4099 (Fsnarf_documentation): Use it, instead of opening and reading
4100 buildobj.lst.
4101
4102 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
4103
4104 * dbusbind.c (Fdbus_call_method)
4105 (Fdbus_call_method_asynchronously): Use English numeric format for
4106 timeout values in doc string.
4107
4108 2009-08-25 Kenichi Handa <handa@m17n.org>
4109
4110 * alloc.c (mark_char_table): New function.
4111 (mark_object): Use mark_char_table for a char-table.
4112
4113 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
4114 (CHAR_TABLE_REF): Use it.
4115
4116 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
4117
4118 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
4119 before invoking the newly build emacs to check for load-path
4120 shadowing.
4121
4122 2009-08-22 Glenn Morris <rgm@gnu.org>
4123
4124 * Makefile.in (bootstrap_exe): New variable.
4125 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
4126 Use ${bootstrap_exe}.
4127
4128 2009-08-22 Eli Zaretskii <eliz@gnu.org>
4129
4130 * coding.h (encode_coding_string): Don't encode unibyte strings.
4131 (Bug#4047)
4132
4133 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
4134
4135 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
4136
4137 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
4138 intended as hotfix only.
4139 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
4140
4141 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
4142
4143 * nsterm.m (ns_get_color): Update documentation properly for last
4144 change, and clean up loose ends in the code left by it. Fix
4145 longstanding bug with 16-bit hex parsing, and add support for
4146 yet another X11 format (rgb:r/g/b) for compatibility.
4147 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
4148 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
4149
4150 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
4151
4152 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
4153
4154 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
4155
4156 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
4157 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
4158 (xd_initialize, xd_pending_messages): Check, whether
4159 $DBUS_SESSION_BUS_ADDRESS is set.
4160
4161 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4162
4163 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
4164
4165 * nsterm.m (ns_get_color): Remove incompatible color formats again.
4166
4167 2009-08-20 Glenn Morris <rgm@gnu.org>
4168
4169 * emacs.c (system-type): Doc fix.
4170
4171 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
4172
4173 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
4174 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
4175
4176 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
4177
4178 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
4179 New functions.
4180 (xd_initialize): Revert change from 2009-08-16.
4181
4182 2009-08-18 Kenichi Handa <handa@m17n.org>
4183
4184 * fontset.c (Ffontset_font): If a nil element is found in a
4185 font-group vector, return nil.
4186
4187 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
4188
4189 * process.c (status_notify): Don't perform redisplay.
4190 (Fdelete_process, list_processes_1, process_send_signal):
4191 Expliticly perform redisplay.
4192 (wait_reading_process_output): Always check process status, but
4193 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
4194
4195 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
4196
4197 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
4198 (XFLOAT_INIT): New macro for storing a float value.
4199 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
4200 * fns.c (sxhash): Copy out the value of a float in order to
4201 examine its bytes.
4202 * dbusbind.c (xd_append_arg): Likewise.
4203
4204 * emacs.c (main): Don't call syms_of_data twice.
4205
4206 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
4207
4208 * dbusbind.c (xd_initialize): Add connection file descriptor to
4209 input_wait_mask, in order to let select() detect, whether a new
4210 message has been arrived.
4211 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
4212
4213 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
4214
4215 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
4216 New functions.
4217
4218 * lisp.h (xd_pending_messages): Declare.
4219
4220 * keyboard.c (readable_events): Call xd_pending_messages.
4221
4222 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
4223
4224 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
4225
4226 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
4227
4228 * buffer.c (set_buffer_internal_1)
4229 (swap_out_buffer_local_variables): Check for unbound local
4230 variables (Bug#4138).
4231
4232 2009-08-14 Eli Zaretskii <eliz@gnu.org>
4233
4234 * process.c (create_pty): Fix last change.
4235
4236 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
4237
4238 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
4239 (xbm_load_image): Caller changed.
4240 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
4241
4242 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
4243
4244 * process.c (create_pty): New function.
4245 (Fstart_process): Use it to allow Emacs to just associate a pty
4246 with the buffer. See associated change in gdb-mi.el.
4247 (list_processes_1): Deal with no program name.
4248 (start_process_unwind): Use pid == -2 to mean no process.
4249
4250 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4251
4252 * cmds.c (nonundocount): New global variable.
4253 (keys_of_cmds): Initialize it.
4254 (Fself_insert_command): Use it to combine upto 20 sequential chars
4255 into a single undo entry, just like the Qself_insert_command code in
4256 keyboard.c does.
4257 Call frame_make_pointer_invisible, also like the Qself_insert_command
4258 code in keyboard.c does.
4259 * keyboard.c (command_loop_1): Use the new global nonundocount rather
4260 than its own local replacement for it.
4261
4262 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
4263
4264 * fns.c (concat): Don't re-set string length to its current value.
4265
4266 * coding.h (decode_coding_string, encode_coding_string):
4267 Use SBYTES macro.
4268
4269 * doprnt.c (doprnt_lisp): Delete unused function.
4270 (doprnt): Merge with doprnt1, discarding lispstrings code.
4271 * lisp.h (doprnt_lisp): Don't declare.
4272
4273 2009-08-07 Juri Linkov <juri@jurta.org>
4274
4275 * puresize.h (BASE_PURESIZE): Increase to 1270000.
4276
4277 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
4278
4279 * print.c (syms_of_print): Undo previous change.
4280
4281 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
4282
4283 * lread.c (read1, syms_of_lread): Read hashtables back from the
4284 readable format.
4285
4286 * print.c (print_preprocess, print_object): Print hashtables fully
4287 and readably.
4288 (syms_of_print): Provide 'hashtable-print-readable.
4289
4290 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
4291
4292 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
4293 no family set.
4294 (nsfont_open): Handle case when entity has no family.
4295
4296 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
4297
4298 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
4299 element, not a list, for match case.
4300
4301 2009-07-28 Kenichi Handa <handa@m17n.org>
4302
4303 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
4304 rigidly.
4305
4306 * xfont.c (xfont_list_pattern): Don't ignore the return value of
4307 font_parse_xlfd. Check font properties more rigidly.
4308
4309 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
4310
4311 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
4312 bsd-common.h.
4313
4314 2009-07-27 Kenichi Handa <handa@m17n.org>
4315
4316 * xfaces.c (face_with_height): Call font_clear_prop.
4317
4318 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
4319
4320 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
4321
4322 * xterm.c (x_term_init): Use Qx.
4323
4324 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
4325
4326 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
4327 (ns_get_color): Revert 2009-07-16 change.
4328
4329 2009-07-25 Eli Zaretskii <eliz@gnu.org>
4330
4331 * lread.c (syms_of_lread) <force_load_messages>: New variable.
4332 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
4333
4334 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
4335
4336 * coding.h (decode_coding_string, encode_coding_string):
4337 Use SCHARS macro.
4338
4339 * lread.c: Rewrite 2009-07-21 changes.
4340 (load_depth): Delete.
4341 (Qload_in_progress): New variable.
4342 (load_unwind): Don't reference load_depth or load_in_progress.
4343 (Fload): Likewise; specbind Qload_in_progress instead.
4344 (init_lread): Don't initialize load_depth.
4345 (syms_of_lread): Initialize and protect Qload_in_progress.
4346
4347 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
4348
4349 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
4350
4351 2009-07-23 Yavor Doganov <yavor@gnu.org>
4352
4353 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
4354
4355 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
4356
4357 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
4358 Bugs 3792, 3720, 2402.
4359 (ns_lookup_indexed_color): Check for bad index.
4360 (ns_index_color): Init unused slot to 0.
4361 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
4362 Bug 3714, possibly 3082.
4363
4364 2009-07-22 Jason Rumney <jasonr@gnu.org>
4365
4366 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
4367 Position IME window at cursor (Bug#2570).
4368 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
4369 (globals_of_w32fns): Dynamically load functions required above.
4370
4371 * w32term.c (w32_draw_window_cursor): Send message to reposition
4372 any IME window.
4373
4374 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
4375
4376 * fileio.c: Revert 2009-07-16 changes.
4377 (Vauto_save_include_big_deletions): New variable.
4378 (Fdo_auto_save): Disable auto-save only if
4379 auto-save-include-big-deletions is nil.
4380
4381 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
4382
4383 * xdisp.c (move_it_to): For continued lines ending in a tab, take
4384 the overflowed pixels into account (Bug#3879).
4385
4386 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
4387
4388 * lread.c (load_depth): New variable.
4389 (Fload, load_unwind, init_lread): Set it to the load recursion
4390 depth; set load_in_progress as a simple boolean based on the
4391 current load_depth. (Bug#3892)
4392
4393 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
4394
4395 * nsfont.m (ns_has_attribute): Remove.
4396 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
4397
4398 2009-07-18 Juri Linkov <juri@jurta.org>
4399
4400 * process.c (Fset_process_query_on_exit_flag): Mention killing
4401 a buffer in docstring.
4402
4403 2009-07-17 Kenichi Handa <handa@m17n.org>
4404
4405 * casetab.c (shuffle): Fix the logic of setting up the cycle.
4406
4407 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4408
4409 * nsfns.m (Fns_set_alpha): Remove function.
4410 (syms_of_nsfns): Don't defsubr it.
4411
4412 * nsterm.m (ns_get_color): Remove incompatible color formats.
4413 (ns_color_to_lisp): Generate #rrggbb color format string.
4414
4415 2009-07-16 Richard Stallman <rms@gnu.org>
4416
4417 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
4418 (Fset_buffer_auto_saved): Handle save_length = -2.
4419
4420 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
4421
4422 * xterm.c (Qx_gtk_map_stock): New var.
4423
4424 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
4425 of calling intern each time.
4426
4427 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4428
4429 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
4430 does tiling.
4431
4432 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
4433
4434 2009-07-14 Kenichi Handa <handa@m17n.org>
4435
4436 * font.c (font_vconcat_entity_vectors): New function.
4437 (struct font_sort_data): New member font_driver_preference.
4438 (font_compare): Check font_driver_preference.
4439 (font_sort_entities): The format of the first argument changed.
4440 (font_delete_unmatched): Likewise.
4441 (font_list_entities): The return type changed.
4442 (font_select_entity): The format of the second argument changed.
4443 (font_find_for_lface): Adjuste for the above changes.
4444 Don't suppress the checking of C even if the repertory supports it.
4445 (Flist_fonts): Adjust for the above changes.
4446
4447 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
4448 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
4449 Reject a font who has adstyle property that is different from a
4450 langname derived from registry property.
4451 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
4452
4453 2009-07-13 Eli Zaretskii <eliz@gnu.org>
4454
4455 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
4456 local copy of dirfilename.
4457
4458 2009-07-13 Kenichi Handa <handa@m17n.org>
4459
4460 * chartab.c (sub_char_table_ref_and_range): Fix the range check
4461 against max_char.
4462
4463 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
4464 calling XSYMBOL (sym).
4465
4466 2009-07-11 Eli Zaretskii <eliz@gnu.org>
4467
4468 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
4469 New function.
4470 (directory_files_internal) [WINDOWSNT]:
4471 Bind w32-get-true-file-attributes to either t or nil, depending whether
4472 the filesystem of the directory is fast or slow.
4473
4474 * w32.c (logon_network_drive): Don't assume PATH is an absolute
4475 file name.
4476 (is_slow_fs): New function.
4477 (stat): Use it to determine whether to issue more system calls to
4478 get accurate file attributes, when w32-get-true-file-attributes is
4479 `local'.
4480
4481 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
4482
4483 * xfns.c (Fx_select_font): Remember last font selected in
4484 x_last_font_name and use that the next time. Also try the frame
4485 parameter font-parameter as default to the font dialog.
4486
4487 2009-07-10 Kenichi Handa <handa@m17n.org>
4488
4489 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
4490
4491 2009-07-09 Eli Zaretskii <eliz@gnu.org>
4492
4493 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
4494
4495 * w32.c (stat): Treat UNC file names as residing on remote
4496 drives. (Bug#3542)
4497
4498 2009-07-09 Kenichi Handa <handa@m17n.org>
4499
4500 * fontset.c (fontset_find_font): Fix previous change.
4501
4502 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
4503
4504 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
4505 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
4506 error flag.
4507
4508 2009-07-08 Kenichi Handa <handa@m17n.org>
4509
4510 * fontset.c (fontset_find_font): Fix the logic of handling
4511 charset_matched.
4512 (font_for_char): Delete unused var.
4513 (generate_ascii_font_name): Delete it.
4514
4515 * coding.h (JIS_TO_SJIS2): Fix the code range check.
4516
4517 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
4518 (encode_coding_sjis): Fix the code range check.
4519
4520 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
4521
4522 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
4523 (Fexpand_file_name): Copy string data properly (Bug#3772).
4524
4525 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
4526
4527 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
4528 first MapNotify.
4529
4530 2009-07-07 Kenichi Handa <handa@m17n.org>
4531
4532 * character.h (unibyte_has_multibyte_table): Delete extern.
4533 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
4534
4535 * charset.c (Fset_charset_priority): Update charset_unibyte.
4536 (syms_of_charset): Initialize charset_unibyte.
4537
4538 * character.c (unibyte_has_multibyte_table): Delete it.
4539 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
4540 charset_unibyte.
4541 (multibyte_char_to_unibyte_safe): Likewise.
4542 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
4543
4544 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
4545 (x_produce_glyphs): Likewise.
4546
4547 * .gdbinit (xcharset): Fix the treating $arg0.
4548
4549 2009-07-04 Eli Zaretskii <eliz@gnu.org>
4550
4551 Emulation of `getloadavg' on MS-Windows.
4552 * w32.c: Include float.h.
4553 (g_b_init_get_native_system_info, g_b_init_get_system_times)
4554 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
4555 (get_native_system_info, get_system_times): New functions.
4556 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
4557 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
4558 (globals_of_w32): Initialize g_b_init_get_native_system_info,
4559 g_b_init_get_system_times, and num_of_processors.
4560
4561 2009-07-03 Jason Rumney <jasonr@gnu.org>
4562
4563 * w32term.c (w32_initialize): Use standard types.
4564
4565 2009-07-03 Eli Zaretskii <eliz@gnu.org>
4566
4567 * dired.c (Ffile_attributes): Decode user and group names by the
4568 locale's encoding. (Bug#3443)
4569
4570 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
4571
4572 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
4573 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
4574
4575 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
4576
4577 * term.c (init_tty): Remove spurious #ifdef.
4578
4579 * m/mips.h: Mention this file is also used for netbsd.
4580 * m/pmax.h: Remove file.
4581
4582 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
4583
4584 * xterm.h (struct x_display_info): Add invisible_cursor.
4585 (struct x_output): Add current_cursor.
4586
4587 * xterm.c (XTtoggle_invisible_pointer): New function.
4588 (x_define_frame_cursor): Don't define cursor if invisible or the
4589 same as before. Set current_cursor.
4590 (x_create_terminal): Set toggle_invisible_pointer_hook.
4591
4592 * xfns.c (make_invisible_cursor): New function.
4593 (x_set_mouse_color): Call make_invisible_cursor.
4594 Set current_cursor.
4595 (x_window): Set current_cursor.
4596
4597 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
4598
4599 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
4600 inserting a character.
4601 (read_avail_input): Call frame_make_pointer_visible.
4602
4603 * frame.c (Vmake_pointer_invisible): New variable.
4604 (frame_make_pointer_invisible, frame_make_pointer_visible):
4605 New functions.
4606 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
4607
4608 * frame.h: Declare frame_make_pointer_invisible and
4609 frame_make_pointer_visible.
4610 (struct frame): Add pointer_invisible.
4611
4612 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
4613
4614 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
4615 frame isn't visible.
4616 (xg_frame_resized): If width/height is -1, get size of window
4617 from X server.
4618
4619 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
4620 for MapNotify.
4621
4622 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
4623 here or call change_frame_size. Just call flush_and_sync.
4624 (flush_and_sync): Reintroduce.
4625
4626 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
4627
4628 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
4629
4630 * xterm.c (x_handle_net_wm_state): Also look for sticky.
4631 (x_term_init): Initialize Xatom_net_wm_state_sticky.
4632
4633 * frame.h: Declare Qsticky.
4634
4635 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
4636
4637 * nsfns.m (ns_frame_parm_handlers): Ditto.
4638
4639 * frame.c: Declare Qsticky.
4640 (frame_parms): Add sticky.
4641
4642 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
4643
4644 * xterm.h: Declare x_set_sticky.
4645
4646 * xterm.c (x_set_sticky): New function.
4647
4648 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
4649 (xg_tool_bar_menu_proxy): Attach enter/leave events to
4650 xg_tool_bar_proxy_help_callback.
4651
4652 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
4653
4654 * frame.c: Qmaximized is new.
4655 (x_set_frame_parameters): Do not handle fullscreen specially.
4656 Only set width and height if explicitly set.
4657 (x_set_fullscreen): Handle Qmaximized.
4658 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
4659 (syms_of_frame): Initialize Qmaximized.
4660
4661 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
4662 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
4663
4664 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
4665 for Expose event. Add call to x_check_fullscreen for MapNotify event.
4666 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
4667 set gravity to NorthWestGravity when USE_GTK.
4668 (set_wm_state): New function.
4669 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
4670 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
4671 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
4672 or the case when no window manager is running. That means remove calls
4673 to x_real_positions and x_fullscreen_adjust.
4674
4675 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
4676 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
4677 flush_and_sync.
4678 (xg_height_changed): New function.
4679 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
4680 and gtk_window_set_policy. Set frame gravity after parsing the
4681 geometry string.
4682 (xg_update_frame_menubar, free_frame_menubar)
4683 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
4684 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
4685 Remove calls to xg_frame_set_char_size.
4686
4687 2009-07-01 Kenichi Handa <handa@m17n.org>
4688
4689 * keyboard.c (decode_keyboard_code): New function.
4690 (tty_read_avail_input): Decode the input bytes if necessary.
4691
4692 * coding.c (setup_coding_system):
4693 Initialize coding->carryover_bytes to 0.
4694 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
4695 use Qno_conversion.
4696
4697 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4698
4699 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
4700
4701 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
4702
4703 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
4704
4705 2009-06-30 Jason Rumney <jasonr@gnu.org>
4706
4707 * w32term.c (w32_initialize): Use GetModuleHandle for library that
4708 is already loaded.
4709 Set user model ID if supported (bug#1849).
4710
4711 2009-06-29 Jim Meyering <meyering@redhat.com>
4712
4713 Remove useless if-before-xfree test.
4714 * nsfont.m (nsfont_close): Remove useless test.
4715 * term.c (delete_tty): Likewise.
4716 * w32.c (system_process_attributes): Likewise.
4717 * w32font.c (w32font_close): Likewise.
4718 * xfaces.c (x_free_gc): Likewise.
4719 * xselect.c (buffer): Likewise.
4720
4721 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
4722
4723 * process.c (send_process): Keep decoded string in a local
4724 variable and protect it from GC. (Bug#3521)
4725
4726 2009-06-28 Eli Zaretskii <eliz@gnu.org>
4727
4728 * term.c (create_tty_output) [MSDOS]: #ifdef away.
4729 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
4730
4731 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
4732
4733 * xdisp.c (start_display, handle_face_prop)
4734 (move_it_vertically_backward, cursor_row_fully_visible_p)
4735 (redisplay_window, try_window_id, produce_image_glyph):
4736 Delete some #ifdef-ed out code chunks that are now obsolete.
4737
4738 * xterm.c (x_update_window_begin, x_new_focus_frame)
4739 (x_scroll_bar_handle_click, handle_one_xevent)
4740 (handle_one_xevent, XTread_socket, x_focus_on_frame)
4741 (x_make_frame_visible, x_make_frame_invisible)
4742 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
4743 code chunks that are now obsolete.
4744
4745 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
4746
4747 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
4748 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
4749 for hours, when optimzation is enabled.
4750 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
4751 (xd_read_message): Make them static.
4752
4753 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
4754
4755 * term.c (turn_on_face): Allow simultaneously bold and dim
4756 terminal faces (Bug#3530).
4757
4758 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
4759
4760 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
4761
4762 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
4763 truncation glyphs (Bug#3686).
4764
4765 2009-06-27 Glenn Morris <rgm@gnu.org>
4766
4767 * m/pmax.h: Restore file, with only netbsd portions.
4768
4769 2009-06-26 David Reitter <david.reitter@gmail.com>
4770
4771 * nsterm.m (keydown): Avoid infinite loop.
4772
4773 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
4774
4775 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
4776 the arg FORCE_SYMBOL.
4777
4778 2009-06-25 Kenichi Handa <handa@m17n.org>
4779
4780 * fontset.c (fontset_find_font): When a usable rfont_def is found
4781 in a fallback font-group, make it the first element of the group.
4782
4783 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
4784
4785 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
4786
4787 2009-06-24 Kenichi Handa <handa@m17n.org>
4788
4789 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
4790 set for C.
4791 (fontset_font): Record the availability of a font for C both in
4792 the realized fontsets of the current one and the default one.
4793
4794 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
4795
4796 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
4797 conditional, it is always defined on AIX.
4798
4799 2009-06-23 Miles Bader <miles@gnu.org>
4800
4801 * window.c (Vrecenter_redisplay): New variable.
4802 (syms_of_window): Initialize it.
4803 (Qtty): New extern declaration.
4804 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
4805
4806 2009-06-23 Jim Meyering <meyering@redhat.com>
4807
4808 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
4809 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
4810 pointer dereferences are guaranteed to be valid.
4811
4812 2009-06-23 Kenichi Handa <handa@m17n.org>
4813
4814 * emacs.c (main): Call init_font ().
4815
4816 * font.h (Vfont_log): Extern it.
4817 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
4818
4819 * font.c (font_sort_entities, font_list_entities)
4820 (font_matching_entity, font_open_entity)
4821 (font_close_object): Change font_add_log to FONT_ADD_LOG.
4822 (Vfont_log): Delete static.
4823 (font_log_env_checked): Delete this variable.
4824 (font_add_log): Don't check font_log_env_checked.
4825 (font_deferred_log): Check Vfont_log.
4826 (init_font): New function.
4827
4828 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
4829
4830 * w32font.c: Change font_add_log to FONT_ADD_LOG.
4831
4832 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
4833
4834 * xfont.c: Change font_add_log to FONT_ADD_LOG.
4835
4836 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
4837 (face_for_char): Don't call font_deferred_log here.
4838 (font_for_char): Likewise.
4839
4840 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
4841
4842 * w32term.c (x_draw_glyph_string): Use the glyph string's width
4843 rather than its background_width for drawing the overline and
4844 underline (Bug#489).
4845
4846 * xterm.c (x_draw_glyph_string): Use the glyph string's width
4847 rather than its background_width for drawing the overline and
4848 underline (Bug#489).
4849 (xg_default_icon_file): New variable.
4850 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
4851 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
4852
4853 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
4854 (load_overlay_strings): Remove externs.
4855 (fast_find_position): Function deleted.
4856 (mouse_face_from_buffer_pos): New function, based on
4857 fast_find_position. Correctly handle before-strings,
4858 display-strings, and after-strings (Bug#1220).
4859 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
4860
4861 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
4862
4863 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
4864 (move_it_in_display_line_to, move_it_in_display_line_to)
4865 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
4866
4867 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
4868
4869 * Branch for 23.1.
4870
4871 2009-06-21 Jason Rumney <jasonr@gnu.org>
4872
4873 * w32term.c (keyboard_codepage): New static variable.
4874 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
4875 (w32_read_socket) [WM_CHAR]: Use it to decode character
4876 input (bug#3237).
4877 (w32_initialize): Initialize it.
4878 (codepage_for_locale): New function.
4879
4880 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
4881
4882 * process.c (status_message): Pass Faset index argument as a lisp
4883 object, so as to work with USE_LISP_UNION_TYPE.
4884
4885 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4886
4887 * coding.c (Ffind_coding_systems_region_internal):
4888 Cache checked characters.
4889
4890 2009-06-18 Kenichi Handa <handa@m17n.org>
4891
4892 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
4893
4894 2009-06-18 Andreas Schwab <aschwab@redhat.com>
4895
4896 * xdisp.c (redisplay_internal): Check that the frame is still
4897 live after redisplay of its windows.
4898 (redisplay_windows): Check that the window is still live.
4899
4900 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
4901
4902 * coding.c (detect_coding_utf_16): Fix previous change.
4903
4904 2009-06-16 Kenichi Handa <handa@m17n.org>
4905
4906 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
4907 UTF-16 by checking the dispersion of Eth and Oth bytes.
4908
4909 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
4910
4911 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
4912
4913 2009-06-15 Kenichi Handa <handa@m17n.org>
4914
4915 * process.c (status_message): Fix previous change. Be sure to
4916 decode a localized string.
4917
4918 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4919
4920 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
4921 add comment explaining why.
4922
4923 2009-06-14 Sidney Markowitz <sidney@sidney.com>
4924
4925 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
4926
4927 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
4928
4929 * nsfont.m (ns_attribute_value): Remove.
4930 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
4931 (ns_has_attribute): Shrink the normal range.
4932 (ns_findfonts): Don't worry about requested spec in determining
4933 need for synthItal.
4934 (ns_get_covering_families): Retain scriptToFamilies.
4935
4936 2009-06-14 Seiji Zenitani <zenitani@mac.com>
4937
4938 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
4939
4940 2009-06-11 Kenichi Handa <handa@m17n.org>
4941
4942 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
4943 overhang for the static composition case.
4944
4945 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4946
4947 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
4948 overhang for the automatic composition case.
4949
4950 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
4951 composition case.
4952
4953 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
4954
4955 * xdisp.c (get_next_display_element): When handling wrap-prefix
4956 and line-prefix, treat \n as a control character (bug#3502).
4957
4958 2009-06-10 Kenichi Handa <handa@m17n.org>
4959
4960 * font.c (font_parse_family_registry): Fix for one-char foundry.
4961 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
4962
4963 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
4964
4965 * process.c (status_message): Fix handling of multibyte signal
4966 string (Bug#3499).
4967
4968 2009-06-09 Jim Meyering <meyering@redhat.com>
4969
4970 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
4971 color name is missing.
4972
4973 2009-06-09 Kenichi Handa <handa@m17n.org>
4974
4975 * charset.c (Fmap_charset_chars): In docstring, state clearly that
4976 FROM-CODE and TO-CODE are codepoints of CHARSET.
4977
4978 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
4979
4980 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
4981
4982 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
4983
4984 Changes to support :script/:lang/:otf in NS font driver.
4985 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
4986 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
4987 indicate not part of font driver interface, and change callers.
4988 (ns_get_family): Remove pointless null check.
4989 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
4990 ns_spec_to_descriptor, ns_descriptor_to_entity.
4991 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
4992 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
4993 (ns_spec_to_descriptor, ns_descriptor_to_entity)
4994 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
4995 (ns_get_req_script, ns_accumulate_script_ranges)
4996 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
4997 New functions.
4998 (nsfont_list, nsfont_match): Use ns_findfonts.
4999 (nsfont_open): Use font descriptor instead of traits.
5000 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
5001 (dump_glyphstring): Rename to ns_dump_glyphstring.
5002
5003 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
5004
5005 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
5006
5007 * fontset.c (fontset_from_font): Remove NS-specific code.
5008
5009 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
5010
5011 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
5012 nonactive windows.
5013
5014 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
5015
5016 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
5017
5018 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
5019
5020 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
5021
5022 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
5023
5024 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
5025 account for the overflowing of newlines into the last glyph on the
5026 display line (Bug#3482).
5027
5028 2009-06-05 David Reitter <david.reitter@gmail.com>
5029
5030 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
5031 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
5032 Fns_selection_exists_p, Fns_selection_owner_p.
5033
5034 2009-06-03 Jason Rumney <jasonr@gnu.org>
5035
5036 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
5037 available. (Bug#3379)
5038
5039 2009-05-29 Kenichi Handa <handa@m17n.org>
5040
5041 * coding.c (get_translation_table):
5042 Check Venable_character_translation.
5043
5044 2009-05-26 David Reitter <david.reitter@gmail.com>
5045
5046 * nsterm.m (ns_raise_frame): Only raise frame if visible.
5047 (x_make_frame_visible): Move frame to front rather than calling
5048 ns_raise_frame().
5049 (keyDown:): Do not swallow events that aren't re-sent if frame
5050 isn't key window.
5051 (drawRect:): Do not set visibility/iconified flags because
5052 drawRect may be called by NSView even if the frame is hidden.
5053
5054 * nsfns.m (Fx_create_frame): Follow other ports in
5055 determining visibility; default to t. Ensure async_visible is set.
5056
5057 2009-05-23 Eli Zaretskii <eliz@gnu.org>
5058
5059 * dired.c (Ffile_attributes): Doc fix.
5060
5061 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
5062
5063 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
5064
5065 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
5066
5067 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
5068 and xfont_scratch_props.
5069 (syms_of_xfont): Do it here instead.
5070 (xfont_find_ccl_program): Delete, unused.
5071 (xfont_open): Delete unused var `i'.
5072
5073 2009-05-21 Kenichi Handa <handa@m17n.org>
5074
5075 * fontset.c (Qlatin): Don't make it static.
5076
5077 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
5078 New functions.
5079 (xfont_scripts_cache, xfont_scratch_props): New variables.
5080 (Qlatin, Vscalable_fonts_allowed): Extern it.
5081 (xfont_list_pattern): Argument changed. Callers changed.
5082 Check Vscalable_fonts_allowed. Check the support of a script.
5083 (xfont_list): Don't reject a font spec with :script property.
5084 (xfont_has_char): Fix setting of encoding.
5085 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
5086 xfont_scratch_props.
5087
5088 2009-05-19 Kenichi Handa <handa@m17n.org>
5089
5090 * font.c (font_sort_entities): Rename from font_sort_entites.
5091 Callers changed.
5092
5093 2009-05-18 Kenichi Handa <handa@m17n.org>
5094
5095 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
5096
5097 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
5098
5099 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
5100 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
5101
5102 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5103
5104 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
5105 (x_delete_terminal): Dissociate resource database from display and
5106 then call XrmDestroyDatabase before closing display.
5107
5108 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
5109
5110 * nsterm.m (ns_read_socket): Remove unused variable.
5111 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
5112 whether selected frame is viable before raising it (based on patch
5113 by David Reitter), and improve commentary.
5114 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
5115
5116 2009-05-15 Kenichi Handa <handa@m17n.org>
5117
5118 * font.c (Ffont_spec): Check arguments.
5119
5120 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
5121
5122 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
5123 weight when testing attributes (Bug#3282).
5124
5125 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5126
5127 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
5128 what we expect to get in the next ConfigureNotify event.
5129
5130 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
5131 before Xft one (Bug#1696).
5132
5133 2009-05-07 David Reitter <david.reitter@gmail.com>
5134
5135 * nsfns.m (Fx_display_planes): Compute bitplanes using
5136 NSBitsPerPixelFromDepth (Bug#3207).
5137
5138 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
5139
5140 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
5141
5142 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
5143
5144 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
5145
5146 2009-05-07 David Reitter <david.reitter@gmail.com>
5147
5148 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
5149 Respect mouse face background.
5150
5151 2009-05-07 David Reitter <david.reitter@gmail.com>
5152
5153 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
5154 Mouse movement/highlight: bracket drawing operations
5155 in ns_update_begin and ns_update_end.
5156
5157 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
5158
5159 * nsfns.m (ns_get_screen): Rewrite.
5160 Don't presume selected-frame is of type `ns'.
5161
5162 * font.c (font_update_drivers): Sanity fallback to avoid disabling
5163 all drivers.
5164
5165 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
5166
5167 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5168
5169 * keyboard.h (add_user_signal): Fix typo in extern.
5170
5171 * lisp.h (add_user_signal): Remove extern.
5172
5173 * unexelf.c (unexec): Consider a section to precede the .bss section
5174 if its addresses overlap that of .bss.
5175 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
5176 instead of dumping process.
5177
5178 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
5179
5180 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
5181
5182 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
5183
5184 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
5185
5186 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
5187
5188 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
5189 any statements.
5190
5191 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
5192
5193 * process.c (read_process_output): Make sure the current buffer is
5194 always restored.
5195
5196 * coding.c (record_conversion_result): Don't modify
5197 Vlast_code_conversion_error for successful result.
5198 (alloc_destination): Don't clobber conversion result. (Bug#1650)
5199
5200 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
5201
5202 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
5203 (load_charset_map): Remove unnecessary code.
5204
5205 2009-04-30 David Reitter <david.reitter@gmail.com>
5206
5207 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
5208 through f24.
5209
5210 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
5211
5212 * xfaces.c (face_at_buffer_position): New arg base_face_id.
5213
5214 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
5215 face_at_buffer_position.
5216 (face_before_or_after_it_pos, get_next_display_element)
5217 (note_mouse_highlight): Update face_at_buffer_position call.
5218
5219 * term.c (term_mouse_highlight):
5220 * msdos.c (IT_note_mouse_highlight):
5221 * fontset.c (Finternal_char_font):
5222 * font.c (font_at, font_range): Update face_at_buffer_position call.
5223
5224 * dispextern.h (face_at_buffer_position): Update prototype.
5225
5226 2009-04-30 Kenichi Handa <handa@m17n.org>
5227
5228 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
5229
5230 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
5231
5232 * callproc.c (Fcall_process): Fix GC protection. Make sure
5233 current buffer is always restored.
5234
5235 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5236
5237 * atimer.c (init_atimer): Also clear stopped_atimers.
5238
5239 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
5240
5241 * process.c (create_process): Clean up merger residues of
5242 2008-07-17 change.
5243
5244 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
5245
5246 * lread.c (Vread_circle): New variable.
5247 (read1): Disable recursive read if Vread_circle is nil.
5248
5249 2009-04-29 Kenichi Handa <handa@m17n.org>
5250
5251 * fontset.h (set_default_ascii_font): Delete extern.
5252
5253 * fontset.c (set_default_ascii_font): Delete this unused function.
5254
5255 * frame.c (x_set_font): When ARG is a font-object, check if the
5256 font-object matches with the ASCII font-spec of the frame's
5257 fontset. If not, create a new fontset for the frame. (Bug #3075)
5258
5259 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
5260
5261 * fns.c (Flocale_info): Protect vector from GC during decoding.
5262
5263 * process.c (Fstart_process): Protect argv strings from GC during
5264 encoding.
5265
5266 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
5267
5268 * sysdep.c: Include <ctype.h>.
5269
5270 2009-04-27 David Reitter <david.reitter@gmail.com>
5271
5272 * nsfont.m (nsfont_open): Remove unused variable shrink.
5273 Remove commented-out code.
5274
5275 2009-04-26 Johan Bockgård <bojohan@gnu.org>
5276
5277 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
5278
5279 2009-04-25 Jason Rumney <jasonr@gnu.org>
5280
5281 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
5282
5283 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5284
5285 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
5286 Swap bytes in short integer if fringe bitmap width > 8.
5287
5288 2009-04-23 Kenichi Handa <handa@m17n.org>
5289
5290 * xfaces.c (Fx_list_fonts): If a font size is specified in
5291 PATTERN, set it in returned scalable fonts.
5292
5293 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
5294
5295 * keyboard.c (Fset_input_meta_mode): Doc fix.
5296
5297 * dispnew.c (Fsend_string_to_terminal): Doc fix.
5298
5299 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
5300
5301 * coding.c (Fterminal_coding_system): Doc fix.
5302
5303 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
5304 (Fx_display_pixel_height, Fx_display_planes)
5305 (Fx_display_color_cells, Fx_server_max_request_size)
5306 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
5307 (Fx_display_mm_height, Fx_display_mm_width)
5308 (Fx_display_backing_store, Fx_display_visual_class)
5309 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
5310 Doc fixes, replacing "terminal id" with "terminal object".
5311 (check_x_display_info): Handle terminal objects instead of
5312 terminal ids.
5313
5314 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
5315 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
5316 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
5317 Doc fixes, replacing "terminal id" with "terminal object".
5318
5319 2009-04-21 Kenichi Handa <handa@m17n.org>
5320
5321 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
5322 (font_score): Check AVGWIDTH too.
5323
5324 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
5325 worst case.
5326 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
5327 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
5328
5329 2009-04-19 Jason Rumney <jasonr@gnu.org>
5330
5331 The following changes fix Bug#3005 for wide glyphs on each platform,
5332 without reintroducing Bug#1258 for stretch glyphs.
5333
5334 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
5335 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
5336 get_phys_cursor_geometry.
5337
5338 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
5339 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
5340 using get_phys_cursor_geometry.
5341
5342 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
5343 correctly calculated.
5344
5345 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
5346
5347 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
5348 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
5349 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
5350 is deprecated.
5351
5352 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
5353
5354 * font.c (font_put_frame_data): Use xfree instead of free.
5355
5356 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
5357
5358 * w32font.c (Qja, Qko): Remove declarations.
5359 (syms_of_w32font): Don't DEFSYM them.
5360
5361 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
5362
5363 * font.c (Qja, Qko): Move definitions here from ftfont.c.
5364
5365 * font.h (Qja, Qko): Extern them.
5366
5367 * ftfont.c (Qja, Qko): Remove declarations.
5368
5369 * xfont.c (Qja, Qko): Remove declarations.
5370
5371 2009-04-17 Kenichi Handa <handa@m17n.org>
5372
5373 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
5374 string from a vector to handle Latin-1 characters correctly.
5375
5376 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
5377 entity even if the cache hits.
5378
5379 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
5380
5381 * search.c (boyer_moore): Use zero as marker value for a possible
5382 match instead of depending on overflow behavior. (Bug#2844)
5383
5384 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
5385 * lisp.h: Adjust prototypes.
5386
5387 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
5388
5389 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
5390 change (Bug#3003).
5391
5392 2009-04-16 Kenichi Handa <handa@m17n.org>
5393
5394 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
5395
5396 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
5397 adstyle.
5398
5399 * ftfont.c (Qja, Qko): Don't make them static.
5400 (enum ftfont_cache_for): New enum.
5401 (fc_charset_table): Undo the previous change.
5402 (ftfont_get_latin1_charset): Delete it.
5403 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
5404 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
5405 non-scarable font, try to get AVERAGE_WIDTH.
5406 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
5407 Change ft_face_cache from a list of a hash-table. Don't check
5408 `ja' and `ko' adstyle here.
5409 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
5410 FTFONT_CACHE_FOR_CHARET.
5411 (ftfont_get_charset): Undo the previous change.
5412 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
5413 (ftfont_close): Likewise.
5414 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
5415
5416 * font.c (font_sort_entites): Change the meaning of the arg
5417 BEST-ONLY. Don't optimize for VEC of lenght 1.
5418 (font_select_entity): Just return the value of font_sort_entites.
5419
5420 * xfaces.c (merge_face_vectors): Reflect font properties in
5421 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
5422 font_clear_prop if a face attribute doesn't change.
5423
5424 * charset.h (charset_ksc5601): Extern it.
5425
5426 * charset.c (charset_ksc5601): New variable.
5427 (Fdefine_charset_internal): Set charset_ksc5601.
5428 (init_charset_once): Initialize charset_ksc5601 to -1.
5429
5430 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
5431
5432 * fileio.c (history_delete_duplicates): Remove unused declaration.
5433
5434 * callint.c (history_delete_duplicates): New declaration.
5435 (Fcall_interactively): Remove command history duplicates when
5436 history_delete_duplicates is true.
5437
5438 2009-04-14 Eli Zaretskii <eliz@gnu.org>
5439
5440 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
5441
5442 2009-04-14 Kenichi Handa <handa@m17n.org>
5443
5444 * font.c (Ffont_info): Fix docstring. Fix the second element of
5445 the returned value (bug#2949).
5446
5447 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
5448
5449 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
5450
5451 2009-04-14 Kenichi Handa <handa@m17n.org>
5452
5453 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
5454 encoding charset is ascii_compatible.
5455
5456 * charset.c (Fdefine_charset_internal): Make charset
5457 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
5458 code_offset is 0, and covers all ASCII characters.
5459
5460 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
5461
5462 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
5463 (ns_string_to_pasteboard_internal):
5464 * nsmenu.m (process_dialog):
5465 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
5466 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
5467 * lisp.h (Fx_load_color_file): Declare.
5468
5469 2009-04-13 Kenichi Handa <handa@m17n.org>
5470
5471 * font.c (font_delete_unmatched): Preserve the order of list elements.
5472 (font_select_entity): Suppress the code to optimize for the same
5473 kind of fonts.
5474 (font_load_for_lface): Get a font that supports at least ASCII
5475 characters.
5476
5477 * ftfont.c (Qja, Qko): New variables.
5478 (fc_charset_table): Delete uniquifier data for iso8859-1.
5479 (ftfont_get_latin1_charset): New function.
5480 (get_adstyle_property): New function.
5481 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
5482 bitmap fonts.
5483 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
5484 Delete iso-8859-1 range from the charset of fonts whose adstyle is
5485 `ko' or `ja'.
5486 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
5487 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
5488 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
5489 property.
5490 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
5491 (syms_of_ftfont): DEFSYM Qja and Qko.
5492
5493 2009-04-09 Kenichi Handa <handa@m17n.org>
5494
5495 * charset.c (map_charset_chars): For a charset of `superset'
5496 method, fix calculation of code range.
5497
5498 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
5499 from the list of extra properties.
5500 (font_clear_prop): Be sure to delete `:name' font property.
5501
5502 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5503
5504 * dispnew.c (redraw_overlapping_rows): Fix detection of
5505 overlapping for topmost and bottommost rows.
5506
5507 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
5508
5509 2009-04-06 Jason Rumney <jasonr@gnu.org>
5510
5511 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
5512
5513 2009-04-06 Kenichi Handa <handa@m17n.org>
5514
5515 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
5516
5517 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
5518
5519 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5520
5521 * ftfont.c (ftfont_open): Fix checking of the return value of
5522 FT_Load_Char. Fix setting font->underline_thickness.
5523
5524 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
5525
5526 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
5527 (Fterminal_parameters, Fterminal_parameter)
5528 (Fset_terminal_parameter): In doc string, refer to terminal
5529 objects rather than terminal ids.
5530
5531 2009-04-04 Eli Zaretskii <eliz@gnu.org>
5532
5533 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
5534 ret_lim_data. (Bug#2867)
5535
5536 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
5537
5538 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
5539 so they don't get wider than the window, matching 2006-01-23
5540 change to the partner function in xdisp.c (Bug#2800).
5541
5542 2009-04-03 Kenichi Handa <handa@m17n.org>
5543
5544 * print.c (print_object): Make each lowest sub_char_table start a
5545 new line (Bug#2866).
5546
5547 2009-04-02 Kenichi Handa <handa@m17n.org>
5548
5549 * fontset.c (fontset_font): Record no-font when a fontset
5550 explicitly tells not to try another font-specs.
5551
5552 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
5553
5554 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
5555
5556 2009-03-30 Kenichi Handa <handa@m17n.org>
5557
5558 * fontset.c (fontset_from_font): Specify only registry in a
5559 font-spec for all characters supported by that registry.
5560
5561 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
5562 even if HAVE_M17N_FLT is not defined.
5563
5564 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
5565
5566 * ftfont.c: Conditionalize prototyping and use of
5567 ftfont_variation_glyphs.
5568
5569 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
5570
5571 * frame.c (delete_frame): Work around compiler bug.
5572
5573 * editfns.c (general_insert_function): Adjust to insdel.c changes.
5574 * insdel.c (prepare_to_modify_buffer, signal_before_change):
5575 Some more EMACS_INT.
5576 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
5577
5578 * xdisp.c (dump_glyph): Fix typo.
5579
5580 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
5581 (adjust_markers_gap_motion, adjust_markers_for_delete)
5582 (adjust_markers_for_insert, adjust_point)
5583 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
5584 (make_gap, copy_text, count_size_as_multibyte, insert)
5585 (insert_and_inherit, insert_before_markers)
5586 (insert_before_markers_and_inherit, insert_1)
5587 (count_combining_before, count_combining_after, insert_1_both)
5588 (insert_from_string, insert_from_string_before_markers)
5589 (insert_from_string_1, insert_from_gap, insert_from_buffer)
5590 (insert_from_buffer_1, adjust_after_replace)
5591 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
5592 (replace_range_2, del_range, del_range_1, del_range_byte)
5593 (del_range_both, del_range_2, modify_region)
5594 (prepare_to_modify_buffer, signal_before_change)
5595 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
5596 for buffer positions and sizes.
5597 * lisp.h: Adjust prototypes accordingly.
5598
5599 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
5600 (non_regular_inserted, non_regular_nbytes, read_non_regular)
5601 (Finsert_file_contents): Use EMACS_INT for buffer positions.
5602
5603 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
5604
5605 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
5606
5607 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
5608 lines and columns so we keep the same pixel height and width.
5609
5610 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
5611 the property _NET_WM_STATE has changed.
5612 (x_handle_net_wm_state): New function to update frame parameter
5613 fullscreen.
5614 (x_term_init): Initialize atoms for _NET_WM_STATE.
5615
5616 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
5617
5618 2009-03-27 Kevin Ryde <user42@zip.com.au>
5619
5620 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
5621 Gpm_GetEvent as an error that justifies closing the filedescriptor.
5622 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
5623 (Fgpm_mouse_stop): Pass that new parameter.
5624 * termhooks.h (close_gpm): Adjust prototype.
5625
5626 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
5627
5628 * lisp.h (Fx_focus_frame): Declare.
5629
5630 * callint.c (Fcall_interactively): For '^' just delegate the work to
5631 handle-shift-selection.
5632 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
5633
5634 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
5635
5636 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
5637
5638 * data.c (Qinteractive_form): New variable.
5639 (Finteractive_form): Use it.
5640
5641 * eval.c (Fcommandp): Use Qinteractive_form.
5642
5643 2009-03-24 Jason Rumney <jasonr@gnu.org>
5644
5645 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
5646 Calculate total size precisely. Decode environment variables
5647 before substituting. (Bug#38)
5648
5649 2009-03-24 Kenichi Handa <handa@m17n.org>
5650
5651 * font.c (find_font_encoding): Return Qnil for unsupported
5652 encoding (Bug#2722).
5653
5654 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
5655
5656 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
5657 that gdpy is set.
5658
5659 2009-03-22 Alan Mackenzie <acm@muc.de>
5660
5661 * callint.c (Finteractive): Clarify the doc string - even
5662 promptless elements need \n separators.
5663
5664 2009-03-22 Jason Rumney <jasonr@gnu.org>
5665
5666 * w32term.c (syms_of_w32term): Doc fix for
5667 x-use-underline-position-properties.
5668
5669 2009-03-21 Eli Zaretskii <eliz@gnu.org>
5670
5671 * w32.c (getpwuid): Change argument type to unsigned.
5672 (struct w32_id): Change type of `rid' member to unsigned.
5673 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
5674 argument ID to unsigned. All callers changed.
5675 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
5676
5677 2009-03-20 Eli Zaretskii <eliz@gnu.org>
5678
5679 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
5680 negative, produce a float value.
5681
5682 * dired.c (make_uid, make_gid): New functions.
5683 (Ffile_attributes): Use them to avoid negative UID and GID.
5684
5685 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
5686
5687 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
5688 (syms_of_keyboard) <command-hook-internal, input-method-function>:
5689 Fix typos in docstrings.
5690
5691 2009-03-19 Kenichi Handa <handa@m17n.org>
5692
5693 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
5694 changed, use font_load_for_lface to get a new font object.
5695 Call free_realized_fontset after handling ASCII font change.
5696
5697 * frame.c (x_set_font): Handle the case that ARG is a cons.
5698
5699 2009-03-19 Glenn Morris <rgm@gnu.org>
5700
5701 * fileio.c (Fsubstitute_in_file_name): Doc fix.
5702
5703 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
5704
5705 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
5706
5707 2009-03-19 Kenichi Handa <handa@m17n.org>
5708
5709 * charset.c (load_charset_map_from_file): When a mapfile can't be
5710 loaded, signal an error.
5711
5712 2009-03-18 Eli Zaretskii <eliz@gnu.org>
5713
5714 * dired.c (Ffile_attributes): Make sure UID and GID are always
5715 positive, even if the value is too large for a positive EMACS_INT.
5716 Doc fix.
5717
5718 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
5719
5720 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5721
5722 * xmenu.c (xdialog_show): Move Fredisplay call ...
5723 (Fx_popup_dialog): ... here.
5724
5725 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
5726
5727 * dired.c (file_name_completion): Disable the first optimization just
5728 installed, since it is not implemented correctly.
5729
5730 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
5731
5732 * dired.c (file_name_completion): Check completion-ignored-extensions
5733 only if the entry can affect bestmatch.
5734 Stop the search early, as Ftry_completion already does.
5735
5736 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
5737
5738 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
5739
5740 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
5741
5742 * keyboard.c (parse_menu_item): Don't display remappings as menu
5743 equivalent bindings (Bug#788).
5744
5745 2009-03-15 Jason Rumney <jasonr@gnu.org>
5746
5747 * w32term.h (WM_EMACS_PAINT): New message.
5748 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
5749 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
5750 before passing to lisp thread. (Bug#950)
5751
5752 2009-03-14 David Reitter <david.reitter@gmail.com>
5753
5754 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
5755 variable as it was never reset.
5756 (ns_term_init): Remove initialization of Lisp-settable defaults
5757 and ns_expand_space.
5758 (-setPanelFromDefaultValues): Remove ns_expand_space.
5759 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
5760 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
5761 i.e. no additional spacing, similar to Carbon port.
5762
5763 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
5764 * nsfns.m (ns-popup-prefs-panel): Remove.
5765
5766 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
5767
5768 * sound.c (alsa_configure): Remove call to deprecated
5769 snd_pcm_sw_params_set_xfer_align.
5770
5771 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
5772
5773 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
5774 after clicking in a detached tool bar.
5775 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
5776
5777 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
5778
5779 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
5780 int/Lisp_Object mixup).
5781
5782 2009-03-13 Kenichi Handa <handa@m17n.org>
5783
5784 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
5785 Handle NAME nil and t correctly. Callers changed.
5786 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
5787 (set_fontset_font): Change ARG to a vector. Handle range_list in
5788 ARG correctly.
5789 (Fset_fontset_font): Fix the case that TARGET is both a script
5790 name and charset name. Adjust the arg to set_fontset_font for
5791 the above change.
5792 (fontset_from_font): Fix previous change.
5793 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
5794 entry. If FONTSET is the default fontset, don't set the extra
5795 slot of the returning char-table.
5796
5797 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
5798
5799 * nsfns.m (Fx_close_connection): Doc fix.
5800 (Fns_do_applescript): Reflow docstring.
5801 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
5802 (Fx_display_pixel_width, Fx_display_pixel_height)
5803 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
5804 Fix typos in docstrings.
5805 (Fns_set_alpha): Fix typos in error messages.
5806
5807 2009-03-12 David Reitter <david.reitter@gmail.com>
5808
5809 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
5810 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
5811 were used for such events.
5812
5813 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
5814 (toggleToolbar, performDragOperation, runHelp): Use it.
5815
5816 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
5817 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
5818
5819 2009-03-11 Kenichi Handa <handa@m17n.org>
5820
5821 * font.h (font_open_by_spec): Extern it.
5822
5823 * font.c (font_open_by_spec): New function.
5824 (font_open_by_name): Use font_open_by_spec.
5825
5826 * frame.c (x_set_font): When ARG is a font-object, don't alter the
5827 fontset of the frame.
5828
5829 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
5830 modify the default font of frames that use this fontset.
5831 (num_auto_fontsets): New variable.
5832 (fontset_from_font): Use num_auto_fontsets to decide a fontset
5833 name. Be sure to set FONTSET_ASCII to the correct font name.
5834 (update_auto_fontset_alist): New function.
5835
5836 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
5837
5838 * makefile.w32-in: Update dependencies.
5839
5840 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
5841
5842 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
5843
5844 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
5845
5846 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
5847
5848 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
5849
5850 * lread.c (Feval_buffer): Doc fix.
5851
5852 2009-03-09 Kenichi Handa <handa@m17n.org>
5853
5854 * charset.c (Qfile_name_handler_alist): Extern it.
5855 (load_charset_map_from_file): Temporarily bind
5856 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
5857
5858 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
5859
5860 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
5861 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
5862
5863 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
5864
5865 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
5866 (x_set_window_size): Change back to calculated method of setting
5867 toolbar height under Cocoa. (Bug#2546)
5868 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
5869 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
5870
5871 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
5872
5873 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
5874 accelerator in parens under GNUstep.
5875
5876 2009-03-06 Kenichi Handa <handa@m17n.org>
5877
5878 These changes are to detect incorrect composition sequence without
5879 looking ahead the source. (Bug#2370)
5880
5881 * coding.h: Include "composite.h".
5882 (enum compisition_state): New enum.
5883 (struct compisition_status): New struct.
5884 (struct iso_2022_spec): New member cmp_status.
5885 (struct emacs_mule_spec): New struct.
5886 (struct coding_system): New members ctext_extended_segment_len and
5887 embedded_utf_8. Change the union member
5888 spec.emacs_mule_full_support to spec.emacs_mule.
5889
5890 * coding.c (CODING_ISO_CMP_STATUS): New macro.
5891 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
5892 (MAX_ANNOTATION_LENGTH): Define to 5.
5893 (ADD_COMPOSITION_DATA): New arg nbytes.
5894 (emacs_mule_char): New arg cmp_status.
5895 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
5896 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
5897 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
5898 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
5899 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
5900 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
5901 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
5902 (EMACS_MULE_COMPOSITION_END): New macro.
5903 (emacs_mule_finish_composition): New function.
5904 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
5905 (decode_coding_emacs_mule): Avoid long looking ahead while
5906 handling composition.
5907 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
5908 (ENCODE_COMPOSITION_RULE): New macro.
5909 (finish_composition): New function.
5910 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
5911 (DECODE_COMPOSITION_START): New implementation.
5912 (DECODE_COMPOSITION_END): Likewise.
5913 (STORE_COMPOSITION_RULE): New macro.
5914 (decode_coding_iso_2022): Avoid long looking ahead while handling
5915 composition, CTEXT extended segment, and embedded UTF-8.
5916 (setup_coding_system): For a coding of type iso-2022, reset
5917 CODING_ISO_EXTSEGMENT_LEN (coding) and
5918 CODING_ISO_EMBEDDED_UTF_8 (coding).
5919 (get_translation): Delete arguments last_block, from_nchars,
5920 to_nchars. Callers changed.
5921 (produce_chars): Don't modify charbuf. Adjusted for the change of
5922 get_translation.
5923 (produce_composition): Adjust for the new annotation sequence.
5924 (handle_composition_annotation): Likewise.
5925 (consume_chars): Adjust for the change of get_translation.
5926
5927 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
5928
5929 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
5930
5931 2009-03-05 Kenichi Handa <handa@m17n.org>
5932
5933 * font.c (font_select_entity): New function.
5934 (font_find_for_lface): Use font_select_entity to select a font.
5935
5936 * fontset.c (fontset_find_font): If a font found without
5937 restricting to the characters C doesn't support C, try to find a
5938 font with C restriction.
5939
5940 2009-03-04 Nikolaj Schumacher <me@nschum.de>
5941
5942 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
5943
5944 2009-03-04 Jason Rumney <jasonr@gnu.org>
5945
5946 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
5947 characters that have already been read. (Bug#2569)
5948
5949 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
5950 Log an error message if check_image_size failed.
5951 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
5952 (gs_load): Mention max-image-size in size error message. (Bug#2560)
5953
5954 2009-03-02 Eli Zaretskii <eliz@gnu.org>
5955
5956 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
5957 when decoding process output.
5958
5959 2009-03-01 Richard M Stallman <rms@gnu.org>
5960
5961 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
5962
5963 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
5964
5965 2009-02-28 Eli Zaretskii <eliz@gnu.org>
5966
5967 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
5968 (decode_coding_emacs_mule, decode_coding_iso_2022)
5969 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
5970 (decode_coding_raw_text, decode_coding_charset)
5971 (setup_coding_system, decode_eol, decode_coding, consume_chars):
5972 Honor inhibit-eol-conversion. (Bug #2186)
5973
5974 2009-02-28 Jason Rumney <jasonr@gnu.org>
5975
5976 * coding.c (detect_coding_charset): If not checking latin extra,
5977 fail on characters between 0x80 and 0xA0. (Bug#2354)
5978
5979 2009-02-28 Eli Zaretskii <eliz@gnu.org>
5980
5981 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
5982 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
5983
5984 2009-02-27 Glenn Morris <rgm@gnu.org>
5985
5986 * callint.c (Finteractive): Doc fix.
5987
5988 2009-02-27 Kenichi Handa <handa@m17n.org>
5989
5990 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
5991
5992 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
5993
5994 * font.c (font_style_to_value): Set value for unknown symbols to
5995 100 instead of 255.
5996 (weight_table, slant_table, width_table): Treat "unspecified" as
5997 the default value.
5998
5999 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
6000
6001 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
6002
6003 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
6004
6005 * lread.c (Fload): Stop checking Vloads_in_progress and signal
6006 error as soon as a recursive load is detected.
6007
6008 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
6009
6010 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
6011 before caching.
6012
6013 2009-02-24 Kenichi Handa <handa@m17n.org>
6014
6015 * fontset.c (fontset_find_font): Fix the condition for checking
6016 unavailable font.
6017
6018 2009-02-24 Glenn Morris <rgm@gnu.org>
6019
6020 * xfaces.c (Finternal_set_font_selection_order): Remove leading
6021 whitespace that confuses documentation.
6022
6023 2009-02-23 Miles Bader <miles@gnu.org>
6024
6025 * process.c (Flist_system_processes, Fprocess_attributes)
6026 (syms_of_process): Rename `system-process-attributes' to
6027 `process-attributes'.
6028
6029 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
6030
6031 * coding.h (struct coding_system): Make safe_charsets a pointer to
6032 unsigned char.
6033 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
6034 being 255.
6035 (SAFE_CHARSET_P): Likewise.
6036 (setup_iso_safe_charsets): Properly setup safe_charsets.
6037 (Fdefine_coding_system_internal): Likewise.
6038 (setup_coding_system): Likewise. Remove unneeded casts.
6039 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
6040 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS. Remove
6041 unneeded casts.
6042
6043 * insdel.c (del_range_2): Don't modify gap contents when called
6044 from decode_coding_object. (Bug#1809)
6045
6046 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
6047
6048 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
6049 Qfont_object.
6050 (Ftype_of): Recognize font objects.
6051
6052 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
6053
6054 * font.c (Qfont_spec, Qfont_entity, Qfont_object): Definitions
6055 moved to data.c.
6056
6057 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
6058
6059 * nsterm.m (x_make_frame_invisible): Unset async_visible,
6060 async_iconified. Based on a patch by Christian Lynbech
6061 <christian.lynbech@tieto.com>.
6062 (EmacsView-windowDidMiniaturize:): Unset async_visible.
6063
6064 2009-02-20 Glenn Morris <rgm@gnu.org>
6065
6066 * syntax.c (Fskip_chars_forward): Fix doc typo.
6067
6068 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
6069
6070 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
6071
6072 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
6073
6074 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
6075
6076 2009-02-19 Kenichi Handa <handa@m17n.org>
6077
6078 * coding.c (detect_coding): Preserve coding->mode.
6079 Don't overflow coding->carryover. (Bug#2370)
6080
6081 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
6082
6083 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
6084
6085 2009-02-18 Kenichi Handa <handa@m17n.org>
6086
6087 * font.c (font_check_otf_features): Fix handling of `nil' element.
6088 (Ffont_spec): Describe :lang and :otf in the docstring.
6089
6090 2009-02-16 Andreas Schwab <schwab@suse.de>
6091
6092 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
6093 string.
6094
6095 2009-02-16 Kenichi Handa <handa@m17n.org>
6096
6097 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
6098 (Bug#1723)
6099
6100 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
6101
6102 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
6103
6104 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
6105 (handle_line_prefix): Suppress wrapping of wrap prefixes.
6106
6107 2009-02-14 Eli Zaretskii <eliz@gnu.org>
6108
6109 * msdos.c (MAX_SCREEN_BUF): New macro.
6110 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
6111 Encode the entire run of glyphs sharing the same face, instead of
6112 doing that one glyph at a time (fixes a bug with displaying
6113 double-size characters).
6114
6115 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
6116
6117 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
6118
6119 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
6120 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
6121 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
6122
6123 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
6124 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
6125
6126 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
6127
6128 * keyboard.c (adjust_point_for_property): Allow stopping between two
6129 invisible areas.
6130
6131 2009-02-12 Jason Rumney <jasonr@gnu.org>
6132
6133 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
6134 (add_font_entity_to_list): Call check_face_name even when family
6135 is unspecified.
6136
6137 * w32term.c (x_display_pixel_height, x_display_pixel_width):
6138 Release DC when finished. Use NULL window to refer to desktop.
6139 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
6140
6141 * w32font.c (add_font_entity_to_list): Fix check for substituted
6142 raster fonts. (Bug#2219)
6143
6144 2009-02-12 Kenichi Handa <handa@m17n.org>
6145
6146 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
6147 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
6148 (autocmp_chars): Use fast_looking_at. Don't compose more
6149 characters than MAX_COMPOSITION_COMPONENTS.
6150 (find_automatic_composition): While looking forward and backward,
6151 check static composition. Fix where to stop looking forward.
6152 (composition_adjust_point): Fix checking of static composition.
6153 (Fcomposition_get_gstring): Pay attention to
6154 MAX_COMPOSITION_COMPONENTS.
6155
6156 * lisp.h (fast_looking_at): Extern it.
6157
6158 * search.c (fast_looking_at): New function.
6159
6160 * term.c (encode_terminal_code): Adjust for the change of
6161 <struct glyph>.u.cmp.to.
6162 (append_composite_glyph): Likewise.
6163
6164 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
6165 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
6166 composition.
6167 (append_composite_glyph): Adjust for the change of
6168 <strcut glyph>.u.cmp.to.
6169
6170 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
6171
6172 * casetab.c (init_casetab_once):
6173 * coding.c (ALLOC_CONVERSION_WORK_AREA):
6174 * font.c (font_update_lface):
6175 * fontset.c (Fnew_fontset):
6176 * ftfont.c (ftfont_drive_otf):
6177 * xfont.c (xfont_open):
6178 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
6179
6180 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
6181
6182 * fileio.c (Fwrite_region): !NILP -> CONSP.
6183
6184 2009-02-10 Andreas Schwab <schwab@suse.de>
6185
6186 * process.c (send_process): Properly relocate pointer into data
6187 when using encoded data. (Bug#2272)
6188
6189 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
6190
6191 * coding.c (detect_coding_charset): Fix previous change.
6192
6193 2009-02-08 Jason Rumney <jasonr@gnu.org>
6194
6195 * w32fns.c (w32_hide_hourglass): Handle case where frame
6196 disappeared while hourglass was displayed. (Bug #2193)
6197
6198 2009-02-07 Andreas Schwab <schwab@suse.de>
6199
6200 * unexelf.c (unexec): Fix error message.
6201
6202 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
6203
6204 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
6205 when modal window is active. (Bug #2152)
6206 (applicationShouldTerminate:): Remove now-unneeded while loop
6207 around NSRunAlertPanel.
6208
6209 * nsmenu.m (popupSession): New file-global variable.
6210 (pop_down_menu): End the popupSession before closing dialog.
6211 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
6212 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
6213 don't query NSApp for events (just sleep instead).
6214
6215 2009-02-07 Eli Zaretskii <eliz@gnu.org>
6216
6217 * coding.c (syms_of_coding) <translation-table-for-input>:
6218 Modify doc string to discourage use for character code unification.
6219
6220 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6221
6222 * atimer.c (run_timers): Update pending_atimers.
6223
6224 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
6225
6226 * image.c (svg_load_image): Fix last change.
6227
6228 * xfns.c (Fx_create_frame): Signal an error if no font is
6229 found (Bug#2147).
6230
6231 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
6232
6233 * character.c (syms_of_character) <script-representative-chars>:
6234 Fix typo in docstring.
6235
6236 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
6237
6238 * nsmenu.m (pop_down_menu): New function.
6239 (ns_popup_dialog): Call it on unwind.
6240 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
6241 call timer_check() (Bug#2154).
6242 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
6243 handling_signal is set.
6244 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
6245
6246 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
6247
6248 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
6249
6250 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
6251
6252 * keyboard.c (poll_for_input_1, handle_async_input):
6253 Set handling_signal under HAVE_NS.
6254
6255 2009-02-04 Glenn Morris <rgm@gnu.org>
6256
6257 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
6258
6259 2009-02-04 Kenichi Handa <handa@m17n.org>
6260
6261 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
6262
6263 * charset.c (Fchar_charset): New optional arg restriction.
6264
6265 * coding.h (coding_system_charset_list): Extern it.
6266
6267 * coding.c (coding_system_charset_list): New function.
6268
6269 * composite.c: Include coding.h and termhooks.h.
6270 (composition_gstring_p): Fix for the terminal case.
6271 (composition_gstring_width): Likewise.
6272 (fill_gstring_body): Likewise.
6273 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
6274 the frame.
6275 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
6276 is within a composition.
6277 (Fcomposition_get_gstring): Fix the terminal case.
6278
6279 * term.c (encode_terminal_code): Fix handling of composition.
6280 (produce_composite_glyph): For static composition, get pixel_width
6281 from struct composition.
6282
6283 2009-02-02 Andreas Schwab <schwab@suse.de>
6284
6285 * unexelf.c (unexec): Handle unaligned bss offset.
6286
6287 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
6288
6289 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
6290 XT,w32read_socket changes to ns_read_socket.
6291
6292 * keyboard.c (handle_interrupt): Don't call
6293 quit_throw_to_read_char() under NS.
6294
6295 * blockinput.h: Remove NS-specific code.
6296
6297 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
6298
6299 * dispnew.c (window_change_signal): Don't try to get the size of a
6300 suspended tty frame.
6301 * term.c (Fresume_tty): Resize if the size has changed while the
6302 tty was suspended.
6303
6304 * alloc.c (mark_stack): Properly conditionalize previous change.
6305
6306 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
6307
6308 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
6309 * w32term.c (w32_read_socket) [SYNC_INPUT]:
6310 Remove; this code is not used on Windows.
6311
6312 2009-01-30 Eli Zaretskii <eliz@gnu.org>
6313
6314 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
6315 EOLs that also has stray ^M characters.
6316
6317 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
6318
6319 * atimer.c (run_timers, alarm_signal_handler):
6320 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
6321 * w32inevt.c (w32_console_read_socket):
6322 * w32term.c (w32_read_socket):
6323 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
6324
6325 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
6326
6327 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
6328 Initialize it as a relative filename pattern.
6329 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
6330 (Fcall_process_region): Simplify temp file creation using
6331 temporary-file-directory.
6332
6333 2009-01-29 Eli Zaretskii <eliz@gnu.org>
6334
6335 * msdos.c: Rename pending_signals to msdos_pending_signals.
6336 (sig_suspender, sigprocmask): Adjust.
6337
6338 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
6339
6340 * keyboard.c (pending_signals): New var.
6341 (poll_for_input, input_available_signal, init_keyboard): Set it.
6342 (process_pending_signals): New function.
6343
6344 * lisp.h (QUIT): Check pending_signals instead of
6345 interrupt_input_pending. Use process_pending_signals.
6346
6347 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
6348
6349 * process.c (wait_reading_process_output): Use process_pending_signals.
6350
6351 * sysdep.c (emacs_write): Use process_pending_signals.
6352
6353 * xterm.c (XTread_socket): Update pending_signals.
6354
6355 * w32term.c (w32_read_socket): Update pending_signals.
6356
6357 * w32inevt.c (w32_console_read_socket): Update pending_signals.
6358
6359 2009-01-29 Kenichi Handa <handa@m17n.org>
6360
6361 * xftfont.c (xftfont_has_char): New function.
6362 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
6363
6364 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
6365
6366 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
6367 under GNUstep.
6368 (ns_query_color): New declaration.
6369
6370 * nsterm.m (ns_confirm_quit): New variable.
6371 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
6372 (EmacsApp-applicationShouldTerminate:): Use it.
6373 (EmacsPrefsController): Let user set it.
6374 (ns_query_color): New function.
6375 (ns_defined_color): Use it.
6376 (ns_initialize): Drop.
6377 (ns_term_init): Add two lines from ns_initialize(), and set
6378 input_interrupt_mode to nil.
6379
6380 * image.c (svg_load_image): Don't right-shift background RGB when
6381 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
6382
6383 2009-01-28 Kenichi Handa <handa@m17n.org>
6384
6385 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
6386 (fontset_get_font_group): Remember that no font-group is specified
6387 for C.
6388
6389 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
6390
6391 * fns.c (concat): Check for string overflow (bug#1787).
6392
6393 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
6394 Quadruple undo limits (bug#1501).
6395
6396 2009-01-27 Kenichi Handa <handa@m17n.org>
6397
6398 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
6399 directly use GT_Get_Char_index.
6400
6401 * xftfont.c (struct xftfont_info): New member `index'.
6402
6403 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
6404 (Ffontset_font): Adjust for the change of fontset entry.
6405
6406 2009-01-26 Kenichi Handa <handa@m17n.org>
6407
6408 * fontset.c (fontset_find_font): Fix handling of non-cons return
6409 value of fontset_get_font_group.
6410 (fontset_font): Revert last change.
6411
6412 2009-01-26 Jason Rumney <jasonr@gnu.org>
6413
6414 * w32font.c (w32font_list_internal): Return quickly if registry is
6415 unknown. Simplify final return.
6416 (add_font_entity_to_list): Break complex logic down into more
6417 manageable chunks. Move unknown registry check to
6418 w32font_list_internal.
6419
6420 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
6421
6422 Changes to remove Feval calls from GUI under NS.
6423
6424 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
6425 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
6426 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
6427
6428 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
6429 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
6430 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
6431 instead of NON_ASCII_KEYSTROKE_EVENT.
6432 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
6433 (EmacsApp-applicationShouldTerminate:): Query user.
6434 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
6435 instead of Feval.
6436
6437 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
6438
6439 * keyboard.c (kbd_buffer_get_event): Check for it.
6440 (keys_of_keyboard): Define lispy keys for
6441 ns-put/unput-working-text.
6442
6443 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
6444 versions.
6445 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
6446
6447 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
6448
6449 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
6450 setting current_buffer directly. (Bug#2044)
6451
6452 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
6453
6454 * fontset.c (fontset_font): If we know there is no font, don't do
6455 any work. (Bug#1952, bug#1990).
6456
6457 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
6458
6459 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
6460
6461 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
6462 (ns_no_defaults): New declaration.
6463 (main): Use it.
6464
6465 * nsterm.h (ns_no_defaults): New declaration.
6466
6467 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
6468
6469 * nsterm.m (ns_no_defaults): New variable.
6470 (ns_initialize): Don't read defaults when ns_no_defaults.
6471 (EmacsView-readSelectionFromPasteboard:)
6472 (writeSelectionToPasteboard:types:): New stubbed-out methods for
6473 NSServicesRequests protocol. (Bug#1435)
6474 (ns_dumpglyphs_stretch): New function.
6475 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
6476 of 2008-11-15 to other terms. (Bug#615)
6477
6478 * nsimage.m (setPixmapData:): Set to ignore image DPI.
6479
6480 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
6481
6482 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
6483 call for Sparc64.
6484
6485 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
6486
6487 * nsfns.m:
6488 * nsgui.h:
6489 * nsmenu.m:
6490 * nsselect.m:
6491 * nsterm.h:
6492 * nsterm.m: Remove '23' comments that indicated code added during
6493 update from emacs-20 -> emacs-23.
6494
6495 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
6496
6497 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
6498 ns_alternate_modifier. (Bug#1217)
6499
6500 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
6501 Display all shortcuts, including those w/o super modifier.
6502
6503 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
6504
6505 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
6506
6507 * fileio.c (Vwrite_region_post_annotation_function)
6508 (Vwrite_region_annotation_buffers): New vars.
6509 (build_annotations_unwind): Just reset
6510 Vwrite_region_annotation_buffers.
6511 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
6512 Call write-region-post-annotation-function.
6513 (build_annotations): Add to Vwrite_region_annotation_buffers if
6514 buffer changes.
6515
6516 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
6517
6518 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
6519 Tiger.
6520 * nsfns.m (ns_do_applescript):
6521 Conditionalize typeUTF16ExternalRepresentation on Tiger.
6522
6523 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
6524
6525 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
6526
6527 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
6528
6529 * nsmenu.m (NSMENUPROFILE): Change #if style.
6530
6531 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
6532
6533 * nsterm.m (x_set_frame_alpha): Add prototype.
6534 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
6535 handle Ctrl-tab. (Bug#1841)
6536 (ns_get_color): Use unsigned long long for scanned hex string value.
6537 (ns_term_shutdown): Abort on non SIGTERM signals.
6538 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
6539 (EmacsPrefsController-setPanelFromDefaultValues): New function.
6540 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
6541 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
6542 (ns_defined_color): Fix settings of the XColor variable fields:
6543 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
6544
6545 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
6546 DPI. (Bug#1316)
6547 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
6548 values in onTiger section.
6549
6550 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
6551
6552 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
6553 Check return value of font_spec_from_name.
6554 (Fx_list_fonts): Doc fix. (Bug#1951)
6555
6556 * font.c (font_spec_from_name): Return Qnil if font name could not
6557 be parsed.
6558 (font_parse_name): Treat a `?' character as part of an XLFD.
6559
6560 * fns.c (Fsubstring): Doc fix.
6561
6562 2009-01-19 Kenichi Handa <handa@m17n.org>
6563
6564 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
6565 (ftfont_list): Likewise.
6566
6567 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
6568
6569 * dbusbind.c (Fdbus_register_signal):
6570 * process.c (conv_sockaddr_to_lisp):
6571 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
6572
6573 * callproc.c (Fgetenv_internal): Doc fix.
6574
6575 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
6576
6577 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
6578 it is not even used.
6579
6580 2009-01-16 Glenn Morris <rgm@gnu.org>
6581
6582 * font.c (Ffont_variation_glyphs): Silence compiler.
6583
6584 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
6585
6586 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
6587 Reported by David Robinow <drobinow@gmail.com>.
6588
6589 2009-01-15 Kenichi Handa <handa@m17n.org>
6590
6591 * coding.c (detect_coding_system): Fix handling of null_byte_found.
6592
6593 2009-01-14 Jason Rumney <jasonr@gnu.org>
6594
6595 * frame.c (x_set_font): Always store a font to the font parameter,
6596 never a fontset. (Bug#1562)
6597
6598 2009-01-14 Kenichi Handa <handa@m17n.org>
6599
6600 * coding.c (TWO_MORE_BYTES): New macro.
6601 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
6602
6603 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
6604
6605 * font.c (font_clear_prop): If clearing the family, clear the font
6606 width index too.
6607
6608 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
6609
6610 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
6611
6612 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
6613 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
6614 functions, use sizeof.
6615
6616 2009-01-12 Martin Rudalics <rudalics@gmx.at>
6617
6618 * keyboard.c (read_char): Fix case where last_nonmenu_event
6619 returned a bad value with submenus. (Bug#447)
6620
6621 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
6622
6623 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
6624 family, clear the font width index too.
6625
6626 2009-01-11 Jason Rumney <jasonr@gnu.org>
6627
6628 * keyboard.c (cmd_error_internal): Exit when errors occur before
6629 frame creation and not in daemon mode. (Bug#1836)
6630
6631 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
6632
6633 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
6634 of a display vector, backtrack.
6635 (try_window_reusing_current_matrix): Check glyph type before
6636 referencing charpos member.
6637
6638 2009-01-10 Eli Zaretskii <eliz@gnu.org>
6639
6640 Fix Bug #876:
6641
6642 * coding.c (inhibit_null_byte_detection): New variable.
6643 (detect_coding, detect_coding_system): Don't pay attention to null
6644 bytes if inhibit_null_byte_detection is non-zero.
6645 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
6646 <inhibit-iso-escape-detection>: Doc fix.
6647
6648 2009-01-09 Jason Rumney <jasonr@gnu.org>
6649
6650 * w32font.c (add_font_entity_to_list): Don't report unknown
6651 Windows charset as any unrecognized registry. (Bug#1548)
6652 Only report Unicode Plane 2 fonts as unicode-sip.
6653
6654 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
6655
6656 * xfaces.c (Fx_font_family_list): Delete function.
6657 Move compatibility version to faces.el.
6658
6659 * font.c (Ffont_family_list): Return a list of strings, not symbols.
6660
6661 2009-01-09 Martin Rudalics <rudalics@gmx.at>
6662
6663 * frame.c (x_set_frame_parameters): Remember requested value for
6664 fullscreen before it's reset by the parameter handler.
6665
6666 2009-01-09 Glenn Morris <rgm@gnu.org>
6667
6668 * keyboard.c (last_command_char): For clarity, rename to...
6669 (last_command_event): ... and update all users.
6670 (last_input_char): For clarity, rename to...
6671 (last_input_event): ... and update all users.
6672 (last-command-char, last-input-char): Move to subr.el as aliases.
6673 * cmds.c, commands.h: Update for last_command_char rename.
6674
6675 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
6676
6677 * font.c (font_open_for_lface): Handle unspecified height attribute.
6678
6679 2009-01-08 Jason Rumney <jasonr@gnu.org>
6680
6681 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
6682 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
6683 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
6684 Don't declare.
6685 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
6686 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
6687
6688 2009-01-07 Kenichi Handa <handa@m17n.org>
6689
6690 * fileio.c (Finsert_file_contents): In the case of replace,
6691 remember the coding system used for decoding in
6692 coding_system (Bug#1039).
6693
6694 * coding.c (decode_coding_utf_8): Check byte_after_cr before
6695 breaking the loop. (Bug#870)
6696 (decode_coding_utf_16, decode_coding_emacs_mule)
6697 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
6698 (decode_coding_charset): Likewise.
6699
6700 2009-01-05 Martin Rudalics <rudalics@gmx.at>
6701
6702 * frame.c (x_set_frame_parameters): Make sure height (width) get
6703 applied when fullwidth (fullheight) is set. (Bug#1522)
6704
6705 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
6706
6707 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
6708 (utc_base): Declare as ULONGLONG, not long double.
6709 (convert_time_raw): Delete.
6710 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
6711 (initialize_utc_base): New function.
6712 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
6713 (convert_from_time_t): Use initialize_utc_base; compute result with
6714 64-bit arithmetic.
6715 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
6716
6717 2009-01-03 Eli Zaretskii <eliz@gnu.org>
6718
6719 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
6720 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
6721 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
6722 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
6723 [!subprocesses]: Define.
6724 (syms_of_process) [!subprocesses]: Intern and staticpro them.
6725 (Flist_system_processes, Fsystem_process_attributes)
6726 [!subprocesses]: Call list_system_processes and
6727 system_process_attributes instead of returning Qnil.
6728
6729 * dosfns.c (system_process_attributes, list_system_processes):
6730 New functions.
6731
6732 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
6733
6734 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
6735 Don't use the default (no-op) implementation.
6736
6737 2009-01-03 Jason Rumney <jasonr@gnu.org>
6738
6739 * keyboard.c (parse_modifiers_uncached): Wheel events are
6740 clicks (bug#687).
6741
6742 * w32term.c (x_query_colors, x_query_color): New functions.
6743
6744 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
6745 (svg_load_image): Cast returned pointers from dynamically loaded
6746 functions. Eliminate W32 specific code.
6747
6748 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
6749
6750 * nsfns.m (x_set_foreground_color, x_set_background_color)
6751 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
6752 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
6753 x_ prefix instead of ns_. Update references.
6754 (syms_of_nsfns): Add a FIXME comment.
6755
6756 * nsterm.m (x_set_cursor_type): New prototype.
6757 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
6758
6759 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
6760 for Solaris instead of incorrectly providing Qutime and Qcutime.
6761
6762 2009-01-02 Eli Zaretskii <eliz@gnu.org>
6763
6764 * w32.c (process_times): Compute sum of utime and stime.
6765 (system_process_attributes): Add Qtime to the alist.
6766
6767 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
6768 and add them to the alist.
6769
6770 * process.c (top level) <Qtime, Qctime>: New variables.
6771 (syms_of_process): staticpro them.
6772 (Fsystem_process_attributes): Add their documentation to the doc
6773 string.
6774
6775 * process.h: Declare Qtime and Qctime.
6776
6777 2009-01-02 Jason Rumney <jasonr@gnu.org>
6778
6779 * image.c (Qgobject): New symbol.
6780 (syms_of_image): Initialize it.
6781 (init_svg_functions): Load some functions from gobject library.
6782
6783 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
6784
6785 * frame.c (make_terminal_frame): Remove redundant code and useless
6786 block.
6787
6788 2009-01-01 Andreas Schwab <schwab@suse.de>
6789
6790 * process.c (conv_sockaddr_to_lisp): Add workaround for
6791 getsockname bug on BSD.
6792
6793 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
6794
6795 * xfns.c (x_create_tip_frame): Set border width of the X window.
6796
6797 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
6798
6799 2009-01-01 Jason Rumney <jasonr@gnu.org>
6800
6801 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
6802 Don't block input, as per earlier xterm.c changes.
6803
6804 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
6805
6806 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
6807 (ns_appkit_version_int): New function.
6808 (x-server-version): Use ns_appkit_version_int and follow 21+
6809 convention of returning 3 integers.
6810
6811 2008-12-30 Kenichi Handa <handa@m17n.org>
6812
6813 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
6814 (CHAR_SURROGATE_PAIR_P): New macro.
6815
6816 * font.h (struct font_driver): New member get_variation_glyphs.
6817
6818 * font.c (font_range): Don't require a font for a variation selector.
6819 (Ffont_variation_glyphs): New function.
6820 (syms_of_font): Defsubr it.
6821
6822 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
6823 ftfont_variation_glyphs.
6824 (setup_otf_gstring): New function.
6825 (ftfont_drive_otf): Use it.
6826 (ftfont_shape_by_flt): Handle variation selector.
6827 (ftfont_variation_glyphs): New function.
6828
6829 2008-12-30 Martin Rudalics <rudalics@gmx.at>
6830
6831 * frame.c (Vemacs_iconified): Remove.
6832
6833 2008-12-30 Jason Rumney <jasonr@gnu.org>
6834
6835 * frame.c (store_frame_param, x_get_arg): Enable newer code on
6836 WINDOWSNT too, as related changes have already been synced. (Bug#117)
6837
6838 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
6839
6840 * indent.c (Fvertical_motion): Don't advance iterator if we have
6841 reseated to the desired position.
6842
6843 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
6844 checking for pos match.
6845
6846 2008-12-30 Kenichi Handa <handa@m17n.org>
6847
6848 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
6849 just get the low 8-bit of the code.
6850
6851 * font.c (font_intern_prop): Validate str as multibyte.
6852
6853 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
6854
6855 * dispextern.h (struct face): Move lface and hash from the middle
6856 of bitfields.
6857
6858 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
6859
6860 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
6861
6862 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
6863 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
6864 instead of intervals.h.
6865
6866 2008-12-26 Andreas Schwab <schwab@suse.de>
6867
6868 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
6869 cons.
6870
6871 2008-12-26 Martin Rudalics <rudalics@gmx.at>
6872
6873 * textprop.c (Qminibuffer_prompt): New variable.
6874 (syms_of_textprop): Initialize it.
6875 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
6876 in minibuffer-prompt face. (Bug#1662)
6877
6878 2008-12-25 Jason Rumney <jasonr@gnu.org>
6879
6880 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
6881
6882 2008-12-24 Jason Rumney <jasonr@gnu.org>
6883
6884 * ralloc.c (r_alloc_reset_variable): New function.
6885
6886 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
6887 record of what points where. (Bug#716)
6888
6889 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
6890
6891 * minibuf.c (read_minibuf): Follow the non-interactive case when
6892 running as a daemon, before detaching.
6893
6894 2008-12-22 Andreas Schwab <schwab@suse.de>
6895
6896 * buffer.c (init_buffer): Use realloc instead of xrealloc.
6897 * gtkutil.c (free_widget_value): Use xfree instead of free.
6898
6899 2008-12-22 Martin Rudalics <rudalics@gmx.at>
6900
6901 * frame.c (delete_frame): New function derived from
6902 Fdelete_frame to handle Qnoelisp value for FORCE argument.
6903 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
6904 (Fdelete_frame): Call delete_frame. Remove line from doc-string
6905 saying that FORCE non-nil doesn't run `delete-frame-functions'.
6906 * frame.h: Extern delete_frame.
6907 * window.c (window_loop):
6908 * terminal.c (delete_terminal):
6909 * xterm.c (x_connection_closed):
6910 * xfns.c (Fx_hide_tip):
6911 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
6912
6913 2008-12-21 Jason Rumney <jasonr@gnu.org>
6914
6915 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
6916 when character maps to .notdef character.
6917
6918 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
6919
6920 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
6921
6922 2008-12-20 Jason Rumney <jasonr@gnu.org>
6923
6924 * frame.c (Fmake_terminal_frame): Raise an error when called from
6925 a graphical frame on Windows. (Bug#1325)
6926
6927 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
6928
6929 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
6930
6931 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
6932
6933 * minibuf.c (Fread_buffer): Doc fix.
6934
6935 2008-12-20 Jason Rumney <jasonr@gnu.org>
6936
6937 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
6938 server name in UNC paths. (Bug#719)
6939
6940 * coding.c (decode_coding): Clear chars_at_source flag when using
6941 charbuf. (Bug#1035)
6942
6943 2008-12-19 Daniel Engeler <engeler@gmail.com>
6944
6945 * sysdep.c (serial_configure): Fix typo.
6946
6947 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
6948
6949 * sysdep.c: Include alloca.h.
6950 (system_process_attributes): Add implementation for Solaris.
6951
6952 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
6953
6954 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
6955
6956 Reorganize implementation of Flist_system_processes and
6957 Fsystem_process_attributes. No functional changes.
6958 * process.c: Don't #include pwd.h, grp.h and limits.h.
6959 (Flist_system_processes): Just call list_system_processes.
6960 (Fsystem_process_attributes): Just call system_process_attributes.
6961 (procfs_list_system_processes, time_from_jiffies)
6962 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
6963 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
6964
6965 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
6966 (list_system_processes): Rename from
6967 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
6968 Provide a do nothing implementation.
6969 (system_process_attributes): Rename from
6970 procfs_list_system_processes.
6971 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
6972 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
6973
6974 * w32.c (list_system_processes): Rename from
6975 w32_list_system_processes.
6976 (system_process_attributes): Rename from
6977 w32_system_process_attributes.
6978
6979 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
6980
6981 * process.h (w32_list_system_processes)
6982 (w32_system_process_attributes): Remove.
6983 (list_system_processes, system_process_attributes):
6984 New prototypes.
6985
6986 2008-12-19 Kenichi Handa <handa@m17n.org>
6987
6988 * xfont.c (xfont_decode_coding_xlfd): New function.
6989 (xfont_encode_coding_xlfd): New function.
6990 (xfont_list_pattern): Decode XLFD by iso-8859-1.
6991 (xfont_list): Decode and encode XLFD by iso-8859-1.
6992 (xfont_match): Likewise.
6993 (xfont_list_family): Likewise.
6994 (xfont_open): Likewise.
6995
6996 * ftfont.c (ftfont_open): Generate a multibyte string if given
6997 names are utf-8.
6998
6999 * xftfont.c (xftfont_open): Generate a multibyte string if given
7000 names are utf-8.
7001
7002 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
7003
7004 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
7005 changed.
7006 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
7007 clicked on a detached tool bar button.
7008
7009 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
7010
7011 * emacs.c (main): Print and error and exit when no data is read
7012 from the pipe.
7013
7014 2008-12-17 Jason Rumney <jasonr@gnu.org>
7015
7016 * w32font.c (w32font_has_char): Always return -1.
7017
7018 2008-12-16 Kenichi Handa <handa@m17n.org>
7019
7020 * font.c (font_open_entity): Fix previous change.
7021
7022 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
7023
7024 * process.c: Include <limits.h>.
7025
7026 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
7027
7028 * font.c (font_update_drivers): Fix mistake in reconstructing the
7029 driver list.
7030
7031 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
7032
7033 * font.c (font_clear_cache): Fix format of font cache data.
7034
7035 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
7036
7037 * xftfont.c (xftfont_open): Free Xft font pattern if
7038 XftFontOpenPattern fails.
7039
7040 * xterm.c (x_free_frame_resources): Remove extraneous call to
7041 free_frame_faces.
7042
7043 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
7044
7045 * xterm.c (x_delete_display): Move xim_close_dpy call to
7046 x_delete_terminal.
7047 (x_delete_terminal): Call xim_close_dpy.
7048
7049 2008-12-13 Jason Rumney <jasonr@gnu.org>
7050
7051 * w32font.c (intern_font_name): New function.
7052 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
7053 (w32font_open_internal, Fx_select_font): Decode font name.
7054 (fill_in_logfont, list_all_matching_fonts): Encode font name.
7055
7056 * w32font.h (intern_font_name): Declare new function.
7057
7058 * w32uniscribe.c (add_opentype_font_name_to_list):
7059 Use intern_font_name.
7060
7061 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
7062
7063 * frame.c (Fdelete_frame): Call free_font_driver_list.
7064
7065 * font.c (free_font_driver_list): Implement missing function.
7066
7067 * w32term.c (w32_term_init): Don't initialize the image cache
7068 here; it will be done in init_frame_faces.
7069
7070 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
7071 (struct x_display_info): Remove unused member null_pixel. New
7072 member xim_callback_data.
7073
7074 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
7075 (xim_initialize): Save pointer to callback function data.
7076 (xim_close_dpy): Free callback function data. Call XCloseIM,
7077 reverting 2008-11-04 change by David Smith.
7078 (x_term_init): Don't initialize the image cache here; it will be
7079 done in init_frame_faces. Remove ancient "null_pixel" cruft.
7080 (x_delete_display): Free x_dnd_atoms member.
7081
7082 2008-12-13 Kenichi Handa <handa@m17n.org>
7083
7084 * font.c (font_rescale_ratio): Moved from xfaces.c.
7085 Argument type changed. Handle a font-spec too.
7086 (font_score): Check Vface_font_rescale_alist.
7087 (font_open_entity): Likewise. (Bug#1547)
7088
7089 * xfaces.c (font_rescale_ratio): Moved to font.c.
7090
7091 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
7092
7093 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
7094
7095 2008-12-12 Jason Rumney <jasonr@gnu.org>
7096
7097 * w32fns.c (x_display_info_for_name, Fx_open_connection): Set
7098 Vwindow_system_version to the real w32 major version.
7099
7100 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
7101
7102 * term.c (init_tty): Move setting the terminal name before the
7103 potential user: maybe_fatal.
7104
7105 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
7106
7107 * term.c (tty_free_frame_resources): Renamed from delete_tty_output;
7108 all callers changed. Call free_frame_faces to free the face cache.
7109
7110 2008-12-11 Jason Rumney <jasonr@gnu.org>
7111
7112 * w32font.c (fill_in_logfont): Don't assume symbol script means
7113 SYMBOL_CHARSET. (Bug#547)
7114
7115 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
7116 size for surrogates. (Bug#1096, bug#872)
7117
7118 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
7119
7120 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
7121
7122 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
7123
7124 * process.c (Fsystem_process_attributes, syms_of_process):
7125 Fix typo in name of Ssystem_process_attributes.
7126 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
7127
7128 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
7129
7130 * syntax.c (Fmodify_syntax_entry): Doc fix.
7131
7132 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
7133
7134 * font.c (Ffont_spec): Move usage to end of docstring.
7135
7136 2008-12-10 Jason Rumney <jasonr@gnu.org>
7137
7138 * w32font.c (Qcham): New symbol.
7139 (font_supported_scripts): Add cham, and comments for other new
7140 scripts in bitfield from OpenType spec.
7141 (add_font_entity_to_list): Limit unicode-sip fonts to those that
7142 contain characters beyond the bmp.
7143
7144 2008-12-10 Kenichi Handa <handa@m17n.org>
7145
7146 * ftfont.c (fc_charset_table): Add "unicode-sip".
7147 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
7148 Qunicode_sip.
7149
7150 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
7151
7152 * coding.c (QCdefault_char): Rename from QCdefalut_char.
7153 (Fcoding_system_put): Use QCdefault_char.
7154 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
7155
7156 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
7157
7158 * xftfont.c (syms_of_xftfont): Fix typo.
7159
7160 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
7161
7162 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
7163
7164 * emacs.c (main): Close daemon_pipe on exec.
7165
7166 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
7167
7168 * termchar.h (struct tty): New members termcap_term_buffer and
7169 termcap_strings_buffer.
7170
7171 * term.c (encode_terminal_code): Free any previous memory blocks
7172 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
7173 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
7174 All callers changed.
7175 (init_tty): Store termcap data and string buffers in new struct
7176 tty members termcap_term_buffer and termcap_strings_buffer.
7177 (delete_tty): Free them.
7178 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
7179
7180 2008-12-07 Seiji Zenitani <zenitani@mac.com>
7181
7182 * nsfns.m (ns_set_background_color): Remove code duplication.
7183 It was a substitute for face-transparency on OS X 10.3.
7184
7185 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
7186
7187 * coding.c (make_conversion_work_buffer): Disable buffer
7188 modification hooks in the work buffer.
7189
7190 2008-12-05 Eli Zaretskii <eliz@gnu.org>
7191
7192 * process.c (procfs_system_process_attributes): If `nread' has a
7193 negative value, assign zero to it.
7194
7195 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
7196
7197 * eval.c (Vdebug_on_error): Doc fix.
7198
7199 2008-12-05 Kenichi Handa <handa@m17n.org>
7200
7201 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
7202 second character is a combining character.
7203
7204 2008-12-05 Eli Zaretskii <eliz@gnu.org>
7205
7206 * process.c (procfs_system_process_attributes): Don't use cmd,
7207 cmdsize, and q without initializing them first.
7208
7209 2008-12-04 Jason Rumney <jasonr@gnu.org>
7210
7211 * w32font.c (w32font_draw): Initialize orig_clip before getting
7212 it, and delete it when finished.
7213
7214 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
7215
7216 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
7217 case when running as a daemon before detaching.
7218
7219 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
7220
7221 * w32.c (init_environment): Don't unload library shell32.dll.
7222
7223 2008-12-03 Kenichi Handa <handa@m17n.org>
7224
7225 * font.c (font_at): Set `multibyte' at first.
7226
7227 * coding.c (decode_coding_charset): Check type of an element of
7228 vector VALIDS.
7229 (encode_coding_emacs_mule): Be sure to set `code'.
7230
7231 * fontset.c (face_for_char): Handle invalid charset property correctly.
7232 (font_for_char): Likewise.
7233
7234 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
7235
7236 * font.c (Fopen_font): Compute pixel size correctly.
7237 (font_update_lface): Handle fonts with corrupted size specs,
7238 i.e. non-int and non-float.
7239
7240 * ftfont.c (ftfont_match): Initialize entity variable.
7241 (ftfont_resolve_generic_family): Avoid using uninitialized var.
7242 (ftfont_list_family): Initialize list var earlier.
7243
7244 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
7245
7246 * xterm.c (x_draw_glyph_string): Fall back on
7247 underline_minimum_offset for underline position.
7248
7249 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
7250
7251 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
7252
7253 * character.c (c_string_width): Specify the type for LEN.
7254
7255 2008-12-03 Kenichi Handa <handa@m17n.org>
7256
7257 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
7258 (decode_coding_utf_8): Likewise.
7259 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
7260 (produce_chars): Initialize consumed_chars to 0.
7261
7262 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
7263
7264 * keyboard.c (make_lispy_position): Only use PT if the selected
7265 window is current.
7266
7267 2008-12-02 Andreas Schwab <schwab@suse.de>
7268
7269 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
7270
7271 * doprnt.c (doprnt1): Fix size of charbuf.
7272
7273 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
7274
7275 * keyboard.c (timer_check): Revert last change.
7276
7277 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
7278
7279 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
7280
7281 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
7282
7283 * makefile.w32-in: Update dependencies.
7284 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
7285
7286 2008-12-01 Andreas Schwab <schwab@suse.de>
7287
7288 * font.c (register_font_driver): Use xmalloc.
7289 (font_put_frame_data): Likewise.
7290
7291 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
7292
7293 * xfaces.c (realize_x_face): Make abort condition clearer.
7294
7295 * gtkutil.c (update_frame_tool_bar): Initialize variable.
7296
7297 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
7298
7299 * keyboard.c (timer_check): After a timer runs, ensure that the
7300 selected window's buffer is current.
7301
7302 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
7303
7304 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
7305 It was accidentally restored by the Unicode merge.
7306
7307 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
7308
7309 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
7310
7311 * w32proc.c: Include "coding.h".
7312 (Fw32_short_file_name): Encode filename passed to Windows API.
7313 (Fw32_long_file_name): Encode filename passed to Windows API and
7314 decode back the result. (Bug#1433)
7315
7316 2008-11-29 Kenichi Handa <handa@m17n.org>
7317
7318 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
7319 not before accessing it.
7320
7321 * charset.c (Fdefine_charset_internal): After calculating
7322 min_char, max_char, and fastmap, copy the charset structure again.
7323 (encode_char): Fix the previous change.
7324
7325 2008-11-28 Seiji Zenitani <zenitani@mac.com>
7326
7327 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
7328
7329 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
7330
7331 * nsterm.m (x_set_frame_alpha): New function.
7332
7333 2008-11-27 Eli Zaretskii <eliz@gnu.org>
7334
7335 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
7336
7337 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
7338
7339 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
7340 pointer to check_face_name.
7341
7342 2008-11-27 Kenichi Handa <handa@m17n.org>
7343
7344 * category.h (SET_CATEGORY_SET): Call set_category_set.
7345 (set_category_set): Extern it.
7346
7347 * category.c (hash_get_category_set): New function.
7348 (Fmodify_category_entry): Adjusted for the change of
7349 char_table_ref_and_range. Call hash_get_category_set to get a
7350 category set to store in the table.
7351
7352 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
7353 Funify_charset.
7354
7355 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
7356 (DECODE_CHAR): Check if the decoder vector is ready.
7357 (ENCODE_CHAR): Check if the encoder char-table is ready.
7358 (maybe_unify_char): Extern it.
7359
7360 * charset.c (Vchar_unified_charset_table): Delete it.
7361 (inhibit_load_charset_map): New variable.
7362 (temp_charset_work): New variable.
7363 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
7364 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
7365 New macros.
7366 (load_charset_map): Meaning of control_flag changed. If
7367 inhibit_load_charset_map is nonzero, setup a table in
7368 temp_charset_work.
7369 (load_charset): New argument control_flag.
7370 (map_charset_for_dump): New function.
7371 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
7372 map_charset_for_dump.
7373 (Fdefine_charset_internal): If the charset method is MAP, load
7374 mapping tables by calling load_charset.
7375 (Funify_charset): Don't load a mapping table but directly set
7376 Vchar_unify_table.
7377 (maybe_unify_char): New function.
7378 (decode_char): Don't handle the deleted method MAP_DEFERRED.
7379 Handle the case of inhibit_load_charset_map being nonzero.
7380 (encode_char): Don't handle the deleted method MAP_DEFERRED.
7381 Handle the case of inhibit_load_charset_map being nonzero.
7382 (Fclear_charset_maps): Just free temp_charset_work.
7383 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
7384 variable.
7385
7386 * chartab.c (sub_char_table_ref_and_range): Adjusted for the
7387 change of char_table_ref_and_range.
7388 (char_table_ref_and_range): Change the meaning of argument FROM
7389 and TO. Now the caller must provide initial values for *FROM
7390 and *TO.
7391
7392 * fontset.c (fontset_add): Adjusted for the change of
7393 char_table_ref_and_range.
7394 (fontset_get_font_group): Likewise.
7395 (Ffontset_info): Likewise.
7396
7397 * keymap.c (describe_vector): Adjusted for the change of
7398 char_table_ref_and_range. For char-table, put boundary between
7399 non-ASCII and 8-bit characters.
7400
7401 * print.c (print_object): For bool-vector, delete unnecessary
7402 check of ASCII_BYTE_P.
7403
7404 2008-11-26 Jason Rumney <jasonr@gnu.org>
7405
7406 * w32font.c (w32font_open_internal): Don't include external
7407 leading in font height. (Bug#879)
7408
7409 2008-11-26 Glenn Morris <rgm@gnu.org>
7410
7411 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
7412 redefinition with ifdef. (Bug#1383)
7413
7414 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
7415
7416 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
7417
7418 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
7419
7420 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
7421 New EmacsView methods.
7422 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
7423 Fixes bug #1048,1357,1414.
7424
7425 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
7426
7427 Fix bug #1362.
7428 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
7429 is not an indexed color.
7430 * nsterm.m (free_indexed_color): Add argument checking.
7431 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
7432
7433 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
7434
7435 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
7436 Document confirm-after-completion value for
7437 minibuffer-completion-confirm.
7438
7439 2008-11-24 Jason Rumney <jasonr@gnu.org>
7440
7441 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
7442 warning.
7443
7444 2008-11-23 Jason Rumney <jasonr@gnu.org>
7445
7446 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
7447 restored before returning.
7448
7449 * w32font.c (check_face_name): New function.
7450 (add_font_entity_to_list): Use it to filter out common substituted
7451 fonts. (Bug#642)
7452
7453 2008-11-22 Martin Rudalics <rudalics@gmx.at>
7454
7455 * buffer.c (Fswitch_to_buffer): Reword and mention new option
7456 confirm-nonexistent-file-or-buffer in doc-string.
7457
7458 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7459
7460 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
7461 Fix copy/paste typo. Add checks.
7462
7463 2008-11-21 Kenichi Handa <handa@m17n.org>
7464
7465 * coding.c (detect_coding_iso_2022): Reject invalid composition
7466 sequence.
7467 (DECODE_COMPOSITION_START): If the current source is the last
7468 block, and the current composition doesn't end, regard this
7469 sequence as invalid.
7470 (decode_coding_iso_2022): Handle invalid composition sequence.
7471
7472 2008-11-20 Martin Rudalics <rudalics@gmx.at>
7473
7474 * window.c (coordinates_in_window): Don't return
7475 ON_VERTICAL_BORDER for the rightmost position of a mode/header
7476 line when the window is not the rightmost one. (Bug#1372)
7477
7478 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
7479
7480 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
7481
7482 2008-11-15 Eli Zaretskii <eliz@gnu.org>
7483
7484 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
7485 and bright_bg if noninteractive is non-zero.
7486
7487 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7488
7489 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
7490 x_draw_glyph_string_background.
7491
7492 * w32term.c (x_draw_glyph_string): Likewise.
7493
7494 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
7495
7496 * xterm.c (x_draw_glyph_string): Stop drawing the background of
7497 the next glyph string once past the overhang width.
7498
7499 * nsterm.m (ns_draw_glyph_string): Likewise.
7500
7501 * w32term.c (x_draw_glyph_string): Likewise.
7502
7503 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
7504
7505 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
7506 double file close.
7507
7508 2008-11-14 Martin Rudalics <rudalics@gmx.at>
7509
7510 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
7511 dedicated status of window before attempting to display another
7512 buffer in it.
7513
7514 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
7515
7516 * msdos.c (Fmsdos_long_file_names):
7517 (syms_of_msdos) <dos-unsupported-char-glyph>:
7518 * dosfns.c (Fint86): Fix typos in docstrings.
7519
7520 2008-11-14 Eli Zaretskii <eliz@gnu.org>
7521
7522 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
7523
7524 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
7525
7526 * puresize.h (BASE_PURESIZE): Increase to 1260000.
7527
7528 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
7529
7530 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
7531
7532 * frame.h: Negative alpha means "don't touch".
7533
7534 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
7535
7536 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
7537
7538 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
7539
7540 * hftctl.c:
7541 * chpdef.h:
7542 * acldef.h: Remove files used only for systems no longer supported.
7543
7544 * Makefile.in: Fix .o alphabetical ordering.
7545 (hftctl.o): Remove dependency, file removed.
7546 (keymap.o, print.o): Depend on charset.h.
7547
7548 2008-11-10 Kenichi Handa <handa@m17n.org>
7549
7550 * character.c (Fget_byte): Fix and make it faster for unibyte target.
7551
7552 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
7553
7554 * dired.c (file_name_completion): If completion_ignore_case is
7555 enabled, ignore case when checking completion-regexp-list.
7556
7557 2008-11-08 Eli Zaretskii <eliz@gnu.org>
7558
7559 * vm-limit.c (get_lim_data): Fix last change.
7560
7561 2008-11-08 Kenichi Handa <handa@m17n.org>
7562
7563 * character.c (Fget_byte): New function.
7564 (syms_of_character): Defsubr Fget_byte.
7565
7566 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
7567
7568 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
7569 cursor position is valid after scrolling.
7570
7571 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
7572
7573 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
7574
7575 2008-11-06 Glenn Morris <rgm@gnu.org>
7576
7577 * xterm.c (handle_one_xevent): Don't let popup menus cause
7578 mouse-autoselect-window related window switching. (Bug#1261)
7579
7580 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
7581
7582 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
7583
7584 2008-11-04 Andreas Schwab <schwab@suse.de>
7585
7586 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
7587
7588 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
7589
7590 * xfns.c (Fx_wm_set_size_hint): New function.
7591
7592 2008-11-03 Martin Rudalics <rudalics@gmx.at>
7593
7594 * textprop.c (Fprevious_single_char_property_change): Return 0
7595 when there's no change in a string. (Bug#1301)
7596
7597 2008-11-02 Martin Rudalics <rudalics@gmx.at>
7598
7599 * frame.c (do_switch_frame): New argument NORECORD passed to
7600 Fselect_window.
7601 (Fselect_frame): New argument NORECORD passed to
7602 do_switch_frame.
7603 (Fset_frame_selected_window): New argument NORECORD passed to
7604 Fselect_frame.
7605 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
7606 in call of do_switch_frame.
7607 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
7608 Handle NORECORD argument in call of Fselect_frame.
7609 * lisp.h (do_switch_frame, Fselect_frame)
7610 (Fset_frame_selected_window): Adjust declarations.
7611 * window.c (select_frame_norecord): New function.
7612 (run_window_configuration_change_hook): Use it and call
7613 Fselect_frame with NORECORD set.
7614 (Fselect_window): Pass NORECORD to Fselect_frame.
7615 (Fset_window_configuration): Handle NORECORD argument in call of
7616 do_switch_frame.
7617 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
7618 Fset_frame_selected_window.
7619 * keyboard.c (command_loop_1): Handle NORECORD in call of
7620 Fselect_frame (currently ifdefd).
7621
7622 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
7623
7624 * emacs.c (USAGE2): Untabify.
7625
7626 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
7627
7628 * composite.c (fill_gstring_header): Fix copy/paste typo.
7629
7630 2008-10-31 Martin Rudalics <rudalics@gmx.at>
7631
7632 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
7633 (Fother_window): Rename argument and rewrite doc-string.
7634 (select_window_norecord): Fix return value. (Bug#1276)
7635
7636 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
7637
7638 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
7639 new frames overriding foreground for tooltips. Based on similar patch
7640 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
7641
7642 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
7643
7644 * emacs.c (Fdaemon_initialized): Initialize nfd.
7645
7646 2008-10-29 Martin Rudalics <rudalics@gmx.at>
7647
7648 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
7649 (Fwindow_text_height): Clarify doc-strings.
7650 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
7651 doc-string of window-scroll-functions.
7652
7653 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
7654
7655 * category.c (syms_of_category): Fix typo in docstring.
7656
7657 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
7658
7659 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
7660 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
7661 Fix typos in docstrings.
7662
7663 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
7664
7665 * emacs.c (daemon_pipe): Make non-static.
7666 (IS_DAEMON): Move definition ...
7667 * lisp.h (IS_DAEMON): ... here.
7668 (daemon_pipe): Declare.
7669 (is_daemon): Remove.
7670 * dispnew.c (init_display): Use IS_DAEMON.
7671
7672 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7673
7674 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
7675 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
7676
7677 * emacs.c (is_daemon): Remove.
7678 (main): Don't set is_daemon.
7679 (IS_DAEMON): New macro.
7680 (Fdaemonp, Fdaemon_initialized): Use it.
7681 (Fdaemon_initialized): Write a char into the pipe to make sure the
7682 parent exits.
7683 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
7684
7685 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
7686
7687 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
7688 over-sized glyph, draw it with the default glyph width.
7689
7690 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
7691 glyph, draw it with the default glyph width.
7692
7693 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
7694 glyph, draw it with the default glyph width.
7695
7696 * xdisp.c (try_scrolling): When computing the distance from the
7697 scroll margin to PT, try moving some distance past the window
7698 bottom before giving up.
7699
7700 2008-10-27 Martin Rudalics <rudalics@gmx.at>
7701
7702 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
7703 (Fset_window_buffer): Explain in doc-string that a window can be
7704 "strongly" dedicated to its buffer.
7705
7706 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
7707
7708 * emacs.c (daemon_name): New variable.
7709 (main): Deal with --daemon=SERVER_NAME.
7710 (Fdaemonp): Return a name if one was passed to --daemon.
7711
7712 2008-10-26 Romain Francoise <romain@orebokech.com>
7713
7714 * emacs.c (daemon_pipe): New variable.
7715 (main): Create a pipe before forking, make the parent exit only after
7716 the child has closed its end of the pipe. Move closing the
7717 descriptors ...
7718 (Fdaemon_initialized): ... here. New function.
7719
7720 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
7721
7722 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
7723 the previous unoptimized table.
7724
7725 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
7726 the distinction between non-nil and non-t value of `dedicated'.
7727
7728 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
7729
7730 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
7731 read_char_minibuf_menu_text is large enough to hold the menu string.
7732
7733 2008-10-25 Martin Rudalics <rudalics@gmx.at>
7734
7735 * window.c (Fget_buffer_window, Fdelete_windows_on)
7736 (Freplace_buffer_in_windows): Make buffer argument optional and
7737 rename to buffer_or_name.
7738
7739 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
7740
7741 * xdisp.c (handle_single_display_spec, handle_display_prop):
7742 Undo 2005-05-16 change.
7743 (handle_stop): Pop iterator if it's loaded with an empty string.
7744 (get_overlay_strings_1): Don't save iterator if it's loaded with
7745 an empty string (bug#1201).
7746
7747 2008-10-24 Kenichi Handa <handa@m17n.org>
7748
7749 * ftfont.c (ftfont_otf_features): Fix previous change.
7750 (ftfont_otf_capability): Check FeatureList.FeatureCount before
7751 calling ftfont_otf_features.
7752
7753 2008-10-24 Kenichi Handa <handa@m17n.org>
7754
7755 * font.c (font_match_p): Fix for the case that a vector of
7756 characters is in script-representative-chars.
7757
7758 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
7759
7760 * dbusbind.c (xd_in_read_queued_messages): New variable.
7761 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
7762 (xd_read_queued_messages): Catch Qdbus_error from the macros.
7763 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
7764 macro. (Bug#1186)
7765
7766 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
7767
7768 * s/sol2-10.h: New file.
7769
7770 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
7771
7772 * xdisp.c (fill_glyph_string): Fix typo in source (though the
7773 poor beast has survived 9+ years and the jump from xterm.c!).
7774
7775 2008-10-23 Martin Rudalics <rudalics@gmx.at>
7776
7777 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
7778 Reword doc-string.
7779 (Fbury_buffer): In doc-string say what happens to the buffer's window.
7780
7781 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
7782
7783 * character.c (syms_of_character) <script-representative-chars>:
7784 <unicode-category-table>: Doc fixes.
7785
7786 2008-10-23 Noah Friedman <friedman@splode.com>
7787
7788 * coding.c (make_conversion_work_buffer): Check that
7789 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
7790 Fget_buffer_create.
7791
7792 2008-10-23 Kenichi Handa <handa@m17n.org>
7793
7794 * font.c (font_add_log): Check the values of extra properties.
7795
7796 2008-10-22 Martin Rudalics <rudalics@gmx.at>
7797
7798 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
7799 Reword doc-string.
7800 (Fset_window_parameter): Use NILP.
7801 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
7802 (Frecenter): Use "selected" instead of "current" window in doc-strings.
7803
7804 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
7805
7806 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
7807
7808 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
7809
7810 * nsfns.m (ns_appkit_version): New function.
7811 (x-server-version): Use it.
7812 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
7813 (x-server-vendor): Don't check_ns().
7814
7815 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
7816
7817 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
7818
7819 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
7820 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
7821
7822 2008-10-22 Kenichi Handa <handa@m17n.org>
7823
7824 * syntax.c (scan_words): Call word_boundary_p instead of comparing
7825 scripts.
7826
7827 * category.c (word_boundary_p): Check scripts instead of charset.
7828 Handle nil value in word-separating-categories and
7829 word-combining-categories.
7830 (syms_of_category): Fix docstrings of word-separating-categories
7831 and word-combining-categories.
7832
7833 2008-10-21 Eli Zaretskii <eliz@gnu.org>
7834
7835 * coding.c (Fencode_coding_region, Fdecode_coding_region)
7836 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
7837
7838 2008-10-21 Martin Rudalics <rudalics@gmx.at>
7839
7840 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
7841 Rename arg "buffer" to "buffer_or_name".
7842 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
7843 it optional.
7844 (no_switch_window): Remove since the return value is not used.
7845 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
7846 Consider window as dedicated when Fwindow_dedicated_p returns a
7847 non-nil value.
7848 * lisp.h: Remove prototype for no_switch_window.
7849
7850 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
7851
7852 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
7853 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
7854
7855 2008-10-21 Kenichi Handa <handa@m17n.org>
7856
7857 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
7858 check Vlatin_extra_code_table.
7859
7860 2008-10-20 Eli Zaretskii <eliz@gnu.org>
7861
7862 * fileio.c (Fset_file_modes): Doc fix.
7863
7864 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
7865
7866 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
7867 in arrays.
7868
7869 2008-10-19 Martin Rudalics <rudalics@gmx.at>
7870
7871 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
7872 Mention kill-buffer in doc-string.
7873 (Fset_window_buffer): Reinsert tem check removed in last commit.
7874 (Fenlarge_window, Fshrink_window): Have argument names and
7875 doc-string follow Elisp manual more closely.
7876
7877 2008-10-18 Eli Zaretskii <eliz@gnu.org>
7878
7879 * fileio.c (Fset_file_modes): Doc fix.
7880
7881 2008-10-18 Martin Rudalics <rudalics@gmx.at>
7882
7883 * window.c (Fwindow_width, Fset_window_start)
7884 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
7885 (Fdelete_windows_on, Freplace_buffer_in_windows):
7886 Make doc-strings follow code and Elisp manual more closely.
7887 (Fwindow_dedicated_p): Make window argument optional.
7888 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
7889 (Fset_window_buffer): Respect any non-nil dedicated value for
7890 window. Rename "buffer" argument to "buffer_or_name".
7891
7892 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
7893
7894 * m/sh3.h: New file, machine description for SuperH.
7895
7896 2008-10-17 Martin Rudalics <rudalics@gmx.at>
7897
7898 * window.c (Fsplit_window): Rename arg horflag to horizontal.
7899
7900 2008-10-17 Kenichi Handa <handa@m17n.org>
7901
7902 * ftfont.c (ftfont_otf_features): Fix indexing
7903 gsub_gpos->FeatureList.Feature. Check the validity of indices.
7904
7905 2008-10-16 Magnus Henoch <mange@freemail.hu>
7906
7907 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
7908 (Fdbus_call_method_asynchronously): Ditto.
7909 This change makes C-h f display the argument list.
7910
7911 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
7912
7913 * fileio.c (Fexpand_file_name): Doc fix.
7914
7915 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
7916 of :foreground and :background equivalent to unspecified (20.x
7917 compatibility).
7918
7919 2008-10-15 Eli Zaretskii <eliz@gnu.org>
7920
7921 * buffer.c (syms_of_buffer): Doc fix.
7922
7923 2008-10-14 Kenichi Handa <handa@m17n.org>
7924
7925 * font.c (font_clear_prop): When clearing font width, clear the
7926 average width field too.
7927
7928 2008-10-12 Andreas Schwab <schwab@suse.de>
7929
7930 * ftfont.c (ftfont_shape_by_flt): Make static.
7931 * ftfont.h (ftfont_shape_by_flt): Don't declare.
7932
7933 * font.c: Don't include <m17n-flt.h>.
7934
7935 2008-10-10 Eli Zaretskii <eliz@gnu.org>
7936
7937 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
7938
7939 2008-10-09 Eli Zaretskii <eliz@gnu.org>
7940
7941 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
7942 away code.
7943
7944 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
7945
7946 * dispnew.c (update_text_area): Avoid looping due to large glyph
7947 overhangs (bug#1070).
7948
7949 2008-10-09 Kenichi Handa <handa@m17n.org>
7950
7951 * fontset.c (face_for_char): If face->fontset is negative, just
7952 return ascii_face.
7953
7954 * font.c (font_delete_unmatched): Fix previous change.
7955 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
7956
7957 2008-10-09 Martin Rudalics <rudalics@gmx.at>
7958
7959 * frame.c (Fraise_frame): On text-only terminals select frame in
7960 order to make it visible. (Bug#1061)
7961
7962 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
7963
7964 * fontset.c (fontset_find_font): Check frame validity.
7965
7966 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
7967
7968 * gtkutil.c (xg_display_open): Reset default display if none exists.
7969 (xg_display_close): Allow Emacs to close all displays (bug#985).
7970
7971 2008-10-06 Andreas Schwab <schwab@suse.de>
7972
7973 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
7974
7975 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
7976
7977 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
7978
7979 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
7980
7981 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
7982 during initialization.
7983
7984 2008-10-04 Eli Zaretskii <eliz@gnu.org>
7985
7986 * xdisp.c (redisplay_internal): If frame switched, redisplay the
7987 whole thing on MSDOS frames as well as on a TTY.
7988
7989 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
7990 well as for TTY.
7991 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
7992 well as on a TTY.
7993
7994 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
7995 as well as for TTY.
7996
7997 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
7998
7999 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
8000 MSDOS frames as well.
8001
8002 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
8003
8004 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
8005 correct arguments.
8006 * menu.c (find_and_return_menu_selection): Add cast.
8007
8008 2008-10-03 Glenn Morris <rgm@gnu.org>
8009
8010 * emacs.c (USAGE1): Add --daemon.
8011
8012 2008-10-02 Eli Zaretskii <eliz@gnu.org>
8013
8014 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
8015 100, so it's in percents as advertised.
8016
8017 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
8018
8019 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
8020 (ns_output.current_cursor, ns_output.desired_cursor)
8021 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
8022 (FRAME_NEW_CURSOR_COLOR): Remove.
8023
8024 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
8025 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
8026 enumeration (HOLLOW_BOX_CURSOR, etc.).
8027
8028 * nsterm.m (ns_frame_rehighlight): Remove commented code.
8029 (draw_window_cursor): Simplify code.
8030 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
8031 Don't change cursor type. In latter, call rehighlight instead of doing
8032 updates manually.
8033 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
8034 Use core Emacs cursor types.
8035
8036 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
8037
8038 2008-10-02 Martin Rudalics <rudalics@gmx.at>
8039
8040 * process.c (Faccept_process_output): Fix doc-string.
8041
8042 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
8043
8044 * gmalloc.c (__sbrk): Also define for uClibc.
8045
8046 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
8047 for uClibc.
8048
8049 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8050
8051 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
8052 styles.
8053 (nsfont_open): Reenable the cache.
8054
8055 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8056
8057 * font.c (font_matching_entity): Reflect ATTRS in font selection.
8058 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
8059
8060 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
8061
8062 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
8063 a suspended terminal.
8064
8065 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
8066
8067 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
8068
8069 2008-09-30 Eli Zaretskii <eliz@gnu.org>
8070
8071 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
8072
8073 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
8074
8075 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
8076 in a continued line coincides with a line beginning.
8077
8078 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
8079
8080 * nsfont.m (nsfont_trait_distance): Fix bug.
8081 (nsfont_list): Return a list rather than a vector (syncs with Handa
8082 changes of 2008-05-14).
8083 (nsfont_open): Improve logging.
8084
8085 2008-09-29 Andreas Schwab <schwab@suse.de>
8086
8087 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
8088
8089 2008-09-28 Martin Rudalics <rudalics@gmx.at>
8090
8091 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
8092 name as char-resolve-modifiers.
8093 Reported by: Markus Triska <markus.triska@gmx.at>
8094
8095 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
8096
8097 * dispnew.c (init_display): Return earlier when running as a daemon.
8098
8099 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
8100
8101 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
8102
8103 2008-09-27 Eli Zaretskii <eliz@gnu.org>
8104
8105 * composite.c (Fcomposition_get_gstring)
8106 (Fcompose_region_internal, Fcompose_string_internal)
8107 (Ffind_composition_internal): Doc fix.
8108 (syms_of_composite) <compose-chars-after-function>: Doc fix.
8109 (syms_of_composite) <auto-composition-function>: Doc fix.
8110 (syms_of_composite) <composition-function-table>: Doc fix.
8111
8112 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
8113
8114 * search.c (wordify): New argument for lax word-ends.
8115 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
8116
8117 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
8118
8119 * lisp.h (is_daemon): Declare.
8120 * dispnew.c (init_display): Do not try to initialize the terminal
8121 when running as a daemon.
8122
8123 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
8124
8125 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
8126 x_display_pixel_height.
8127
8128 2008-09-22 Martin Rudalics <rudalics@gmx.at>
8129
8130 * undo.c (record_point): Don't call Fundo_boundary for first
8131 change. (Bug#731)
8132
8133 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
8134
8135 * emacs.c (Fdaemonp): Doc fix.
8136
8137 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
8138
8139 * emacs.c (main): Place #ifdef in the proper place.
8140
8141 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
8142
8143 * emacs.c (standard_args): Add --daemon.
8144 (main): Disconnect from the terminal when --daemon is passed.
8145 (is_daemon): New variable.
8146 (Fdaemonp): New function.
8147 (syms_of_emacs): Defsubr it.
8148
8149 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
8150
8151 * xdisp.c (get_next_display_element): Handle string display
8152 correctly when checking for the end of a box run.
8153
8154 2008-09-20 Glenn Morris <rgm@gnu.org>
8155
8156 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
8157 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
8158 (Frename_file): Avoid copying to trash if a rename involves
8159 a delete. (Bug#964).
8160
8161 2008-09-20 Eli Zaretskii <eliz@gnu.org>
8162
8163 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
8164 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
8165 frames as well as termcap frames.
8166 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
8167 get_named_tty.
8168
8169 2008-09-19 Eli Zaretskii <eliz@gnu.org>
8170
8171 * process.c (procfs_system_process_attributes): Fix cmdline in
8172 case /proc/PID/cmdline is empty.
8173
8174 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
8175 x_display_pixel_height.
8176
8177 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
8178
8179 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
8180
8181 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
8182 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
8183
8184 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
8185
8186 * dispextern.h (struct it): Move line_wrap away from the middle of
8187 bitfields. Move voffset in struct iterator_stack_entry after the
8188 bitfields. Move tab_width near after another short.
8189
8190 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
8191
8192 * frame.h (struct frame): Move alpha from the middle of bitfields.
8193
8194 * window.h (struct window): Move frozen_window_start_p after the
8195 rest of the bitfields to reduce padding.
8196
8197 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
8198
8199 * xterm.h (x_display_info): Remove `height' and `width' members.
8200
8201 * nsterm.h (ns_display_info): Remove `height' and `width' members.
8202
8203 * w32term.h (w32_display_info): Remove `height', `width',
8204 `height_in', and `width_in' members.
8205
8206 * xterm.c (x_display_pixel_height, x_display_pixel_width):
8207 New functions.
8208 (x_calc_absolute_position): Use them.
8209 (x_term_init): Omit removed `height' and `width' members.
8210
8211 * w32term.c (x_display_pixel_height, x_display_pixel_width):
8212 New functions.
8213 (w32_read_socket, x_calc_absolute_position): Use them.
8214 (w32_initialize_display_info, w32_term_init): Omit removed members
8215 of w32_display_info.
8216
8217 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
8218 New functions.
8219 (ns_initialize_display_info): Omit removed members of ns_display_info.
8220
8221 * xterm.c (x_display_pixel_height, x_display_pixel_width):
8222 New functions.
8223 (x_calc_absolute_position): Use them.
8224 (x_term_init): Omit removed `height' and `width' members.
8225
8226 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
8227 (compute_tip_xy):
8228 * frame.c (x_fullscreen_adjust):
8229 * xmenu.c (menu_position_func): Use x_display_pixel_height and
8230 x_display_pixel_width.
8231
8232 2008-09-18 Kenichi Handa <handa@m17n.org>
8233
8234 * composite.c (fill_gstring_header): Don't check FROM and TO here.
8235 (composition_compute_stop_pos): Fix handling of static composition.
8236 (Fcomposition_get_gstring): Check FROM and TO at first.
8237
8238 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8239
8240 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
8241 mixup (YAILOM).
8242
8243 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
8244
8245 * indent.c (Fvertical_motion): Use position reported by iterator
8246 instead of PT for determining screen motion (bug#943).
8247
8248 2008-09-17 Romain Francoise <romain@orebokech.com>
8249
8250 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
8251
8252 2008-09-17 Kenichi Handa <handa@m17n.org>
8253
8254 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
8255
8256 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
8257 if necessary.
8258
8259 2008-09-16 Kenichi Handa <handa@m17n.org>
8260
8261 * coding.c (make_conversion_work_buffer): Avoid calling
8262 Fget_buffer_create if it is not necessary.
8263
8264 2008-09-15 Martin Rudalics <rudalics@gmx.at>
8265
8266 * window.c (Fselect_window): Don't update window_select_count and
8267 use_time when norecord is not nil.
8268
8269 2008-09-14 Kenichi Handa <handa@m17n.org>
8270
8271 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
8272 specpdl_ptr.
8273
8274 2008-09-12 Kenichi Handa <handa@m17n.org>
8275
8276 * indent.c (scan_for_column): Don't handle automatic composition
8277 if the current buffer is not associated with a window.
8278
8279 * composite.c (composition_reseat_it): If the current buffer is
8280 not associated with a window, ignore the automatic composition.
8281 (find_automatic_composition): Likewise.
8282
8283 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8284
8285 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
8286 (Fgpm_mouse_stop): Use it.
8287 * termhooks.h (close_gpm): Declare.
8288 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
8289 connection if Gpm_GetEvent fails.
8290
8291 * window.c (set_window_buffer): Always preserve current-buffer.
8292
8293 2008-09-12 Glenn Morris <rgm@gnu.org>
8294
8295 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
8296
8297 2008-09-11 Glenn Morris <rgm@gnu.org>
8298
8299 * charset.c (charset-map-path): Doc fix.
8300
8301 2008-09-10 Kenichi Handa <handa@m17n.org>
8302
8303 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
8304
8305 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
8306 compose a grapheme cluster with the preceding base glyph.
8307
8308 * composite.c (composition_compute_stop_pos): Fix previous change.
8309 Reset cmp_it->id to -1 at first.
8310
8311 2008-09-10 Glenn Morris <rgm@gnu.org>
8312
8313 * Makefile.in (character.o, chartab.o): Fix config.h typo.
8314
8315 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
8316
8317 * keyboard.c (read_key_sequence): Reapply translation maps when
8318 switching keyboards.
8319
8320 2008-09-09 Kenichi Handa <handa@m17n.org>
8321
8322 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
8323 characters.
8324
8325 * composite.c (FORWARD_CHAR): Fix calculation
8326 of (POSITION).pos_byte.
8327 (composition_compute_stop_pos): Limit the search of composition to
8328 at most 500 characters ahead. If we reach the limit or find a
8329 newline, set cmp_it->ch to -2 and return 0.
8330 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
8331
8332 2008-09-08 Kenichi Handa <handa@m17n.org>
8333
8334 * indent.c (Fvertical_motion): Be sure to set
8335 it_overshoot_expected if it.cmp_it.id is non-negative.
8336
8337 2008-09-07 Andreas Schwab <schwab@suse.de>
8338
8339 * callproc.c (Fcall_process): Don't hold references to string data
8340 across garbage collection. Move initialisation of new_argv down
8341 to avoid compiler bug.
8342
8343 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8344
8345 * process.c (Fsystem_process_attributes): Doc fix.
8346
8347 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
8348
8349 * callproc.c (Fcall_process): Canonicalize current directory name.
8350
8351 * xdisp.c (move_it_to): When moving by vpos, ensure that the
8352 iterator advances to the next line if the current line ends in a
8353 continued tab.
8354
8355 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
8356
8357 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
8358 member to point to cmp_from.
8359
8360 * xdisp.c: Doc fix for references to gidx data member.
8361
8362 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
8363
8364 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
8365
8366 2008-09-07 Kenichi Handa <handa@m17n.org>
8367
8368 * composite.c (FORWARD_CHAR): Check STOP after
8369 incrementing (POSITION).pos.
8370
8371 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8372
8373 * process.c (Fsystem_process_attributes): Doc fix.
8374
8375 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
8376
8377 * keyboard.c (Ftop_level): Doc fix.
8378
8379 2008-09-06 Eli Zaretskii <eliz@gnu.org>
8380
8381 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
8382 minibuffer, don't let lower part of menu invade the echo area.
8383
8384 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
8385 "char *q" to access menu text and advance through it. Revert the
8386 change that displayed ">" instead of ASCII character 0x10.
8387
8388 2008-09-05 Eli Zaretskii <eliz@gnu.org>
8389
8390 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
8391 toggle boxes and radio buttons on MS-DOS as well.
8392
8393 2008-09-05 Kenichi Handa <handa@m17n.org>
8394
8395 * composite.c (autocmp_chars): Check lookback count.
8396 (composition_compute_stop_pos): Set cmp_it->lookback.
8397 (composition_reseat_it): Check lookback count.
8398 (struct position_record): New struct.
8399 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
8400 (find_automatic_composition): New function.
8401 (composition_adjust_point): Use find_automatic_composition.
8402
8403 * dispextern.h (struct composition_it): New member lookback.
8404
8405 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
8406
8407 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
8408 if moving by a single line.
8409
8410 2008-09-02 Andreas Schwab <schwab@suse.de>
8411
8412 * xterm.c (x_delete_display): Fix merge error.
8413
8414 * fileio.c (Fexpand_file_name): Remove unused variables.
8415
8416 2008-09-02 Eli Zaretskii <eliz@gnu.org>
8417
8418 * fileio.c (Fexpand_file_name): Copy argument `name' into local
8419 storage on all platforms, not just on DOS_NT.
8420
8421 2008-09-02 Jason Rumney <jasonr@gnu.org>
8422
8423 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
8424 Ensure mouse is not grabbed after menu is finished.
8425
8426 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
8427
8428 * xfaces.c (Finternal_set_alternative_font_family_alist)
8429 (Finternal_set_alternative_font_registry_alist): Properly copy
8430 entire alist structure.
8431
8432 2008-09-01 Kenichi Handa <handa@m17n.org>
8433
8434 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
8435 representative chars of the script is a vector.
8436 (ftfont_list): Handle the case where the representative chars of
8437 the script is a vector.
8438
8439 * character.c (syms_of_character): Docstring of
8440 script-representative-chars fixed.
8441
8442 2008-08-31 Eli Zaretskii <eliz@gnu.org>
8443
8444 * msdos.c (BUILD_CHAR_GLYPH): New macro.
8445 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
8446 the menu. Allocate larger buffer for `text', to account for
8447 possible ^C characters.
8448
8449 2008-08-31 Martin Rudalics <rudalics@gmx.at>
8450
8451 * xdisp.c (prepare_menu_bars): Don't call
8452 Vwindow_size_change_functions with arg Qt.
8453
8454 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
8455
8456 * font.h (font_range):
8457 * fileio.c (report_file_error):
8458 * composite.c (composition_update_it): Yet another int/Lisp_Object
8459 mixup (YAILOM).
8460
8461 2008-08-30 Glenn Morris <rgm@gnu.org>
8462
8463 * data.c (Fmake_variable_frame_local): Doc fix.
8464
8465 * frame.c (Fmodify_frame_parameters): Doc fix.
8466
8467 2008-08-30 Eli Zaretskii <eliz@gnu.org>
8468
8469 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
8470 needed by GetTokenInformation.
8471 (w32_system_process_attributes): Check return values of all system
8472 APIs.
8473
8474 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
8475 only when the state changes.
8476 (IT_update_begin, IT_update_end): Add termscript trace.
8477
8478 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
8479 clipboard is unavailable. Set dst to NULL if it doesn't point to
8480 malloc'ed data.
8481 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
8482 passing random values to xfree.
8483
8484 * dispnew.c (init_display): Set `tty's association in frame's
8485 parameters alist to the name of the terminal device, if that is known.
8486
8487 2008-08-29 Jason Rumney <jasonr@gnu.org>
8488
8489 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
8490
8491 2008-08-29 Eli Zaretskii <eliz@gnu.org>
8492
8493 * composite.c (fill_gstring_body): Avoid compiler warnings.
8494
8495 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
8496 LGLYPH_SET_CODE to avoid compiler warnings.
8497
8498 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
8499
8500 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
8501
8502 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
8503 LGLYPH_SET_CODE.
8504
8505 2008-08-29 Kenichi Handa <handa@m17n.org>
8506
8507 * fileio.c (report_file_error): Don't downcase the first character
8508 of errstring if it is still unibyte.
8509
8510 2008-08-29 Kenichi Handa <handa@m17n.org>
8511
8512 These changes are to re-implement the automatic composition so
8513 that it doesn't use text properties.
8514
8515 * Makefile.in (ftfont.o): Depend on composite.h.
8516 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
8517
8518 * character.h (Vunicode_category_table): Extern it.
8519
8520 * character.c (Vunicode_category_table): New variable.
8521 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
8522
8523 * chartab.c (optimize_sub_char_table): Perform more greedy
8524 optimization.
8525
8526 * composite.h (enum composition_method):
8527 Delete COMPOSITION_WITH_GLYPH_STRING.
8528 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
8529 (Vcomposition_function_table): Extern it.
8530 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
8531 (composition_gstring_put_cache, composition_gstring_from_id)
8532 (composition_gstring_p, composition_gstring_width)
8533 (composition_compute_stop_pos, composition_reseat_it)
8534 (composition_update_it, composition_adjust_point): Extern them.
8535 (Fcomposition_get_gstring): EXFUN it.
8536
8537 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
8538 (Vcomposition_function_table)
8539 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
8540 (gstring_hash_table, gstring_work, gstring_work_headers):
8541 New variables.
8542 (gstring_lookup_cache, composition_gstring_put_cache)
8543 (composition_gstring_from_id, composition_gstring_p)
8544 (composition_gstring_width, fill_gstring_header)
8545 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
8546 (composition_reseat_it, composition_update_it)
8547 (composition_adjust_point, Fcomposition_get_gstring): New functions.
8548 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
8549 and gstring_work_headers. DEFVAR_LISP composition-function-table.
8550 Defsubr compostion_get_gstring.
8551
8552 * dispextern.h (struct glyph): New union u.cmp. Delete the member
8553 cmp_id.
8554 (struct glyph_string): Delete the member gidx. New members
8555 cmp_id, cmp_from, and cmp_to.
8556 (enum it_method): Delete GET_FROM_COMPOSITION.
8557 (struct composition_it): New struct.
8558 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
8559 Delete c, len, cmp_id, cmp_len in u.comp.
8560
8561 * font.h (enum lgstring_indices): Delete it.
8562 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
8563 (enum lglyph_indices): Likewise.
8564 (font_range): Adjust extern.
8565 (font_fill_lglyph_metrics): Extern it.
8566
8567 * font.c (QCf): New variable.
8568 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
8569 (font_prepare_composition): Delete this function.
8570 (font_range): Type and arguments changed.
8571 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
8572 (font_fill_lglyph_metrics): New function.
8573 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
8574 (syms_of_font): DEFSYM QCf. Delete defsubr for
8575 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
8576 Defsubr Sfont_shape_gstring.
8577
8578 * fontset.h (font_for_char): Extern it.
8579
8580 * fontset.c (font_for_char): New function.
8581
8582 * ftfont.c: Include composite.h.
8583 (ftfont_resolve_generic_family): Add langset "en" to pattern.
8584 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
8585
8586 * indent.c: Include composite.h and dispextern.h.
8587 (check_composition): Delete this function.
8588 (scan_for_column): Handle composition by
8589 composition_compute_stop_pos, composition_reseat_it, and
8590 composition_update_it.
8591 (compute_motion): Likewise.
8592 (Fvertical_motion): Fix checking of composition.
8593
8594 * keyboard.c (adjust_point_for_property): Check composition by
8595 composition_adjust_point.
8596
8597 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
8598 struct glyph_string.
8599
8600 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
8601 (append_composite_glyph): Adjust for the change of struct it and
8602 struct glyph.
8603 (produce_composite_glyph): Likewise.
8604
8605 * w32term.c (x_draw_composite_glyph_string_foreground):
8606 Adjust for the change of struct glyph_string.
8607 (x_draw_glyph_string): Likewise.
8608
8609 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
8610 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
8611
8612 * xdisp.c: Include font.h.
8613 (it_props): Delete the entry for Qauto_composed.
8614 (init_iterator): Initialize it->cmp_it.id to -1.
8615 (compute_stop_pos): Call composition_compute_stop_pos.
8616 (face_before_or_after_it_pos): Adjust for the change of struct it.
8617 (handle_auto_composed_prop): Delete it.
8618 (handle_composition_prop): Handle only static composition.
8619 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
8620 from xassert. Initialize it->cmp_it.stop_pos.
8621 (push_it): Adjust for the change of struct it.
8622 (pop_it): Likewise.
8623 (get_next_element): Delete next_element_from_composition.
8624 (CHAR_COMPOSED_P): New macro.
8625 (get_next_display_element): For automatic composition, get a face
8626 from the font in the glyph-string.
8627 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
8628 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
8629 (next_element_from_string): Check if the character at the current
8630 position is composed by CHAR_COMPOSED_P.
8631 (next_element_from_buffer): Likewise.
8632 (next_element_from_composition): Adjust for the change of struct it.
8633 Update it->cmp_it.
8634 (dump_glyph): Adjust for the change of struct glyph.
8635 (fill_composite_glyph_string): Adjust for the change of struct
8636 it and struct glyph. Don't handle automatic composition here.
8637 (fill_gstring_glyph_string): New function.
8638 (x_get_glyph_overhangs): Handle automatic composition.
8639 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
8640 (BUILD_GSTRING_GLYPH_STRING): New macro.
8641 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
8642 automatic composition.
8643 (append_composite_glyph): Adjust for the change of struct it and
8644 struct glyph.
8645 (x_produce_glyphs): Adjust for the change of struct it.
8646
8647 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
8648 the change of struct glyph_string.
8649 (x_draw_glyph_string): Likewise.
8650
8651 2008-08-29 Glenn Morris <rgm@gnu.org>
8652
8653 * buffer.c (word-wrap): Doc fix.
8654 * xdisp.c (truncate-partial-width-windows): Doc fix.
8655 Increase default to 50.
8656
8657 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
8658
8659 * xdisp.c (update_tool_bar_unwind): New function.
8660 (update_tool_bar): Temporarily set selected frame before building
8661 tool-bar items.
8662
8663 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
8664
8665 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
8666 snprintf, respectively.
8667 (xd_append_arg): Convert strings with Fstring_make_unibyte.
8668
8669 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
8670
8671 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
8672 LDFLAGS to GNUstep CC invocation.
8673
8674 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
8675
8676 * indent.c (Fvertical_motion): Revert last change. Handle the
8677 general case where we are moving forward, and PT spans multiple
8678 screen lines.
8679
8680 * eval.c (find_handler_clause): Temporarily increase
8681 max-lisp-eval-depth while printing the backtrace buffer, to
8682 guarantee that help-mode code can run.
8683
8684 2008-08-27 Eli Zaretskii <eliz@gnu.org>
8685
8686 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
8687 colors under -rv.
8688 (IT_set_frame_parameters): Don't swap foreground and background
8689 colors if `(reverse . t)' is present in the frame properties.
8690 (internal_terminal_init): Call init_frame_faces only for the
8691 initial frame.
8692
8693 2008-08-27 Andreas Schwab <schwab@suse.de>
8694
8695 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
8696
8697 2008-08-27 Andreas Schwab <schwab@suse.de>
8698
8699 * search.c (search_buffer): Set char_base to zero only at the end.
8700
8701 2008-08-27 Kenichi Handa <handa@m17n.org>
8702
8703 * fileio.c (report_file_error): Fix handling of multibyte error string.
8704
8705 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
8706
8707 * xterm.c (x_term_init): Temporarily hide the partially
8708 initialized terminal while calling vendor-specific-keysyms.
8709
8710 2008-08-26 Eli Zaretskii <eliz@gnu.org>
8711
8712 * msdos.c (internal_terminal_init): Most initializations done only
8713 once, especially initial_screen_colors[] and termscript open.
8714
8715 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
8716
8717 * eval.c (Fcondition_case): Doc fix.
8718
8719 * widgetprv.h (EmacsFramePart): Change font member to the new font
8720 struct.
8721
8722 * widget.c: Include character.h and font.h for XSETFONT.
8723 (setup_frame_gcs): Compute X font id from font struct, just once.
8724
8725 2008-08-26 Eli Zaretskii <eliz@gnu.org>
8726
8727 * term.c (get_named_tty): Fix last change.
8728
8729 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
8730
8731 * indent.c (Fvertical_motion): If moving forward starting from a
8732 multi-line string, move the iterator to the last line of that string.
8733
8734 2008-08-25 Eli Zaretskii <eliz@gnu.org>
8735
8736 * frame.c (do_switch_frame): Mark previously displayed frame as
8737 obscured for FRAME_MSDOS_P frames as well.
8738
8739 2008-08-24 Eli Zaretskii <eliz@gnu.org>
8740
8741 * frame.c (make_terminal_frame): Initialize f->terminal,
8742 f->terminal->reference_count, and scroll bars on MS-DOS as well.
8743 Set the top frame to newly created frame.
8744 (Fmake_terminal_frame): Reuse the_only_display_info.
8745
8746 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
8747 estimating available memory.
8748
8749 2008-08-23 David Reitter <david.reitter@gmail.com>
8750
8751 * nsterm.m (ns_draw_window_cursor): Don't call
8752 NSDisableScreenUpdates and NSEnableScreenUpdates on
8753 non-NS_IMPL_COCOA systems.
8754
8755 2008-08-23 Andreas Schwab <schwab@suse.de>
8756
8757 * process.c (procfs_system_process_attributes): Fix use of
8758 uninitialized variables.
8759
8760 2008-08-23 Eli Zaretskii <eliz@gnu.org>
8761
8762 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
8763
8764 * dispnew.c (init_display): Remove MS-DOS specific conditions for
8765 calling tty-set-up-initial-frame-faces.
8766
8767 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
8768 Allow MSDOS frames along with X frames.
8769
8770 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
8771 addition to output_termcap.
8772
8773 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
8774
8775 * termchar.h (FRAME_TTY): Support output_msdos_raw.
8776 (struct tty_display_info) [MSDOS]: Add fields related to mouse
8777 highlight.
8778
8779 * process.c [!subprocesses]: Define QCname.
8780 (syms_of_process): Intern and staticpro it.
8781
8782 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
8783 Adjust for changes in encoding/decoding routines.
8784 Use encode_coding_object and decode_coding_object instead of
8785 encode_coding and decode_coding.
8786
8787 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
8788
8789 * dosfns.c: Include frame.h before termhooks.h.
8790 (dos_cleanup): Use CURTTY ()->termscript instead of a global
8791 variable termscript.
8792
8793 * s/msdos.h (USER_FULL_NAME): Define.
8794 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
8795
8796 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
8797 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
8798 pw->pw_gecos.
8799
8800 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
8801 SELECTED_FRAME as additional (1st) argument.
8802 (tty_read_avail_input): Handle output_msdos_raw in
8803 addition to output_termcap.
8804
8805 * msdos.c: Include frame.h before termhooks.h.
8806 (mouse_on, mouse_off, mouse_moveto, mouse_init)
8807 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
8808 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
8809 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
8810 (IT_set_terminal_modes, IT_reset_terminal_modes)
8811 (IT_set_frame_parameters): Use tty->termscript instead of a global
8812 variable termscript.
8813 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
8814 global variable terminal_coding. Don't refer to
8815 Vnonascii_translation_table.
8816 (internal_terminal_init): Set Vwindow_system in current_kboard.
8817 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
8818 Announce date and time of session start, if termscript is open.
8819 Don't zero out the_only_display_info (it is done in
8820 term.c:init_tty). Open termscript only of not already open.
8821 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
8822 here instead of dos_ttraw. Don't initialize display if this is an
8823 initial tty. Don't set FRAME_FONT.
8824 (Vwindow_system_version): Bump to 23.
8825 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
8826 is available, set up mouse_position_hook.
8827 (dos_ttraw, IT_set_terminal_modes): If called with initial
8828 terminal, do nothing.
8829 (IT_set_frame_parameters): Handle the Qtty_type frame
8830 parameter by calling internal_terminal_init.
8831 (dos_set_window_size, show_mouse_face)
8832 (clear_mouse_face, IT_note_mode_line_highlight)
8833 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
8834 (dos_rawgetc): Use tty_display_info instead of x_display_info.
8835 (initialize_msdos_display): New function.
8836 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
8837 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
8838 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
8839 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
8840 Accept additional argument: a pointer to a frame. Update all callers.
8841 (request_sigio, unrequest_sigio): Don't define, now defined on
8842 sysdep.c.
8843 (IT_write_glyphs): Rewrite to use encode_terminal_code.
8844
8845 * term.c [MSDOS]: Include msdos.h.
8846 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
8847 conditional to DOS_NT. Allow only one call to this function in a
8848 session. Don't allocate a new struct tty_display_info; instead,
8849 reuse the_only_display_info. Call get_tty_size to get screen
8850 dimensions. Call init_baud_rate to set bad_rate.
8851 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
8852 (Fsuspend_tty) [MSDOS]: Don't close input and output.
8853 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
8854 (get_tty_terminal, get_named_tty, Ftty_type)
8855 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
8856 output_termcap.
8857 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
8858 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
8859 only when subprocesses are supported.
8860
8861 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
8862 f->output_data.x.
8863 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
8864 terminal devices.
8865
8866 * msdos.h: Remove definition of struct x_display_info and struct
8867 x_output.
8868 (FRAME_FONT): Use output_data.tty.
8869 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
8870 (struct x_display_info): Rename from display_info. Update all users in
8871 msdos.c.
8872 (struct x_output): Remove background_pixel and foreground_pixel.
8873 (the_only_display_info): Rename from the_only_x_display.
8874 (dos_ttraw): Update prototype.
8875
8876 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
8877 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
8878
8879 2008-08-23 Jason Rumney <jasonr@gnu.org>
8880
8881 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
8882 (fn_TIFFSetDirectory): New library function used.
8883 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
8884 (tiff_load): Use :index to select among multiple images. Set count
8885 property when multiple images exist.
8886 (gif_format): Use :index, not :image.
8887
8888 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
8889
8890 * xdisp.c (try_scrolling): Check INT_MAX instead of
8891 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
8892 to obtain INT_MAX.
8893
8894 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
8895
8896 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
8897
8898 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
8899
8900 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
8901 GNUstep library location.
8902
8903 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
8904
8905 * xfaces.c (x_update_menu_appearance): Check validity of menu font
8906 before using it.
8907
8908 * puresize.h (BASE_PURESIZE): Increase to 1250000.
8909
8910 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
8911
8912 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
8913 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
8914 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
8915 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
8916 (EmacsApp-cursor_blink_handler): Remove declaration.
8917 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
8918 match 01 Feb 2008 changes in xterm.c.
8919 (ns_read_socket): Add cast to avoid warning.
8920 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
8921 GNUstep.
8922
8923 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
8924
8925 * xselect.c (x_get_foreign_selection): Return nil if desired
8926 selection could not be obtained, instead of signalling an error.
8927
8928 2008-08-20 David Reitter <david.reitter@gmail.com>
8929
8930 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
8931 * nsterm.m: Remove ns-specific code for cursor blinking.
8932 (ns_draw_window_cursor): Clear cursor properly rather than
8933 redrawing the area. Respect width of bar cursors.
8934 These changes enable the use of generic blink-cursor-mode and
8935 generic cursor types in NS and support smooth cursor movements (do
8936 not blink off after command).
8937 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
8938 Nextstep, too.
8939
8940 2008-08-19 Kenichi Handa <handa@m17n.org>
8941
8942 * font.c (Vfont_log_deferred): New variable.
8943 (font_add_log): Check Vfont_log_deferred.
8944 (font_deferred_log): New function.
8945
8946 * font.h (font_deferred_log): Extern it.
8947
8948 * fontset.c (reorder_font_vector): Use encoding charset of fonts
8949 for sorting.
8950 (face_for_char): Use deferred log.
8951
8952 2008-08-18 Kenichi Handa <handa@m17n.org>
8953
8954 * fontset.c (face_for_char): Add font log.
8955
8956 * font.c (font_add_log): Add the font properties :script, :lang,
8957 and :otf in the log.
8958
8959 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
8960
8961 * xdisp.c: Remove dead code.
8962 (handle_invisible_prop, next_overlay_string): Defer call to
8963 setup_for_ellipsis.
8964 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
8965
8966 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
8967
8968 * xfaces.c (lookup_derived_face): Properly handle possible zero
8969 return value of get_lface_attributes.
8970 (merge_faces): Don't tell lookup_derived_face to signal an error
8971 if face is not found.
8972
8973 * dired.c (Fdirectory_files): Doc fix.
8974
8975 * process.c (make_process): Initialize kill_without_query struct
8976 member.
8977
8978 2008-08-15 Eli Zaretskii <eliz@gnu.org>
8979
8980 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
8981 Alternative calculation of totphys for Visual Studio 6.
8982
8983 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
8984
8985 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
8986 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
8987 All users changed.
8988 (stat): Only root directory passed to GetDriveType. Allow RAM
8989 disk as well as local fixed disk when w32-get-true-file-attributes
8990 is set to `local'.
8991 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
8992 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
8993 (w32_cached_id, w32_add_to_cache): New functions.
8994 (get_name_and_id): Look account names in the cache before calling
8995 lookup_account_sid.
8996 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
8997 New initialization flags.
8998 (globals_of_w32): Initialize them to zero.
8999 (w32_system_process_attributes): Use w32_cached_id and
9000 w32_add_to_cache.
9001
9002 2008-08-14 Lawrence Mitchell <wence@gmx.li>
9003
9004 * lread.c (Fread_char, Fread_char_exclusive): If no character
9005 event is read before timeout is reached, return nil, rather than
9006 converting to a number.
9007
9008 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
9009
9010 * fns.c (use_dialog_box): Doc fix.
9011
9012 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
9013 on OS X.
9014
9015 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
9016
9017 * frame.c (Qns_parse_geometry): New var.
9018 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
9019
9020 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
9021
9022 * xdisp.c (x_produce_glyphs): Handle the case when font has no
9023 space character in calculating tabs.
9024
9025 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
9026
9027 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
9028
9029 2008-08-10 Glenn Morris <rgm@gnu.org>
9030
9031 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
9032 silence gcc "limited range of data type" warnings in some
9033 make_fixnum_or_float calls.
9034
9035 2008-08-09 Eli Zaretskii <eliz@gnu.org>
9036
9037 * w32.c (w32_system_process_attributes): If the process does not
9038 exist, return nil.
9039
9040 * w32.c: Include thelp32.h, psapi.h and coding.h.
9041 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
9042 declarations.
9043 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
9044 (Process32Next_Proc): New typedefs.
9045 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
9046 (g_b_init_process32_next, g_b_init_open_thread_token)
9047 (g_b_init_impersonate_self, g_b_init_revert_to_self)
9048 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
9049 (g_b_init_get_process_working_set_size)
9050 (g_b_init_global_memory_status_ex): New static variables.
9051 (globals_of_w32): Initialize them.
9052 (create_toolhelp32_snapshot, process32_first, process32_next)
9053 (open_thread_token, impersonate_self, revert_to_self)
9054 (get_process_memory_info, get_process_working_set_size)
9055 (global_memory_status, global_memory_status_ex): New wrapper
9056 functions.
9057 (w32_list_system_processes, w32_system_process_attributes)
9058 (enable_privilege, restore_privilege, ltime, process_times):
9059 New functions.
9060 (convert_time_raw): New function.
9061 (convert_time): Remove conversion of FILETIME into time in 100
9062 nsec units, call convert_time_raw instead.
9063
9064 * process.h (w32_list_system_processes, w32_system_process_attributes):
9065 Add prototypes.
9066 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
9067 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
9068 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
9069 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
9070
9071 * process.c (Fsystem_process_attributes): Doc fix.
9072
9073 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
9074
9075 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
9076 a continued multi-char glyph; if so, advance to the actual glyph.
9077
9078 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
9079
9080 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
9081
9082 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
9083 (.m.o): Use it.
9084 * config.in: Regenerate.
9085
9086 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
9087
9088 * xdisp.c (redisplay_window): Revert last change.
9089 (try_window): Check bottom scroll margin too.
9090
9091 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
9092
9093 * config.in: Regenerate.
9094
9095 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
9096 -list-load-path-shadows'.
9097 (nsgui.h): Reduce number of things depending on it.
9098
9099 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
9100
9101 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
9102 instead of window-end which does the wrong thing at eob.
9103 (try_cursor_movement): Minor optimization.
9104 (redisplay_window): If scroll margin is defined, don't assume
9105 window doesn't need scrolling.
9106
9107 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
9108
9109 * config.in: Regenerate.
9110
9111 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
9112 (mostlyclean): Don't delete *.d under NS.
9113
9114 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
9115
9116 2008-08-06 Kenichi Handa <handa@m17n.org>
9117
9118 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
9119
9120 2008-08-06 Andreas Schwab <schwab@suse.de>
9121
9122 * config.in: Regenerate.
9123
9124 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
9125
9126 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
9127 forcing a window start.
9128
9129 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
9130 (auto_save_1): Update modtime when auto-save-list-file-name is on.
9131
9132 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
9133
9134 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
9135 argument.
9136
9137 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
9138
9139 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
9140 <scroll-down-aggressively, before-change-functions>:
9141 <after-change-functions>: Reflow docstrings.
9142
9143 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
9144 Ken Raeburn <raeburn@gnu.org>
9145
9146 Dock menu customization, based on a patch by Ken Raeburn, plus some
9147 other fixes.
9148 * nsmenu.m (dockMenu): New variable.
9149 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
9150
9151 * nsterm.h (dockMenu): Declare.
9152
9153 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
9154 (ns_term_init): Initialize dockMenu.
9155 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
9156 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
9157 left.
9158
9159 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
9160
9161 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
9162
9163 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
9164
9165 * config.in: Regenerate.
9166
9167 2008-08-04 Seiji Zenitani <zenitani@mac.com>
9168
9169 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
9170
9171 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
9172
9173 * nsterm.h (find_and_call_menu_selection): Fix prototype.
9174
9175 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
9176
9177 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
9178
9179 * keyboard.h: Comment an #endif.
9180
9181 * lisp.h (have_menus_p): Adjust comment.
9182
9183 * menu.c (find_and_return_menu_selection): Fix comparison with
9184 client_data.
9185
9186 * nsmenu.m (popup_activated_flag): New variable.
9187 (popup_activated): New function.
9188 (menu-or-popup-active-p): New exported lisp definition.
9189 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
9190 when popup done.
9191 (ns_popup_dialog): Set popup_activated_flag.
9192
9193 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
9194 version for GNUstep (handled by conditional typedef in nsterm.m).
9195 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
9196 in rgb.txt).
9197
9198 * process.c (init_process): Use DARWIN_OS, not DARWIN.
9199
9200 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
9201
9202 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
9203
9204 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
9205 shortcircuit if popup_activated like GTK and X toolkit.
9206
9207 * m/inter386.h: Change DARWIN to DARWIN_OS.
9208
9209 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
9210 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
9211 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
9212 comment on NO_SOCK_SIGIO.
9213
9214 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
9215
9216 * nsterm.m (windowDidResize): Remove stopModal call.
9217
9218 2008-08-03 Andreas Schwab <schwab@suse.de>
9219
9220 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
9221 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
9222
9223 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
9224
9225 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
9226 Don't use uninitialized pointer variable when using getrlimit.
9227
9228 2008-08-02 Jason Rumney <jasonr@gnu.org>
9229
9230 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
9231
9232 2008-08-02 Eli Zaretskii <eliz@gnu.org>
9233
9234 * alloc.c (NSTATICS): Bump to 0x640.
9235
9236 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
9237
9238 * lisp.h: Add prototype for directory_files_internal.
9239
9240 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
9241 New functions.
9242 (syms_of_process): Defsubr them. Add initializations for various
9243 Q* symbols used in procfs_system_process_attributes.
9244 (procfs_list_system_processes, procfs_system_process_attributes)
9245 [HAVE_PROCFS]: New functions.
9246 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
9247 (procfs_get_total_memory): New functions.
9248
9249 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
9250
9251 * xfaces.c (Fx_load_color_file): Fix previous change;
9252 it is #ifdef WINDOWSNT, not WINDOWS_NT.
9253
9254 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
9255
9256 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
9257
9258 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
9259
9260 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
9261
9262 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
9263
9264 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
9265
9266 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
9267 define NSApplicationDelegateReplySuccess.
9268 (EmacsView -converstationIdentifier): Use long instead of
9269 NSInteger for GNUstep, since it doesn't have NSInteger.
9270
9271 * xmenu.c: Revert last change.
9272
9273 * keyboard.h: Fix last change.
9274
9275 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
9276
9277 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
9278 on Windows.
9279
9280 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
9281
9282 Warning clearing and clean-up in NS port.
9283 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
9284 Add prototypes.
9285 * nsgui.h (FACE_DEFAULT): Remove, unused.
9286 (XGCValues): Change colors to unsigned long.
9287 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
9288 nsterm.m.
9289 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
9290 (ns_list_fonts): Remove, unused.
9291 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
9292 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
9293 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
9294 (nsfont_draw): Compare face colors to 0, not nil.
9295 * nsmenu.m (struct widget_value): Drop unneeded declaration.
9296 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
9297 (-addSubmenuWithTitle:): Use NSMenuItem class.
9298 (ns_popup_menu): Use NO, not NULL, for enabled setting.
9299 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
9300 (ns_clip_to_row): Make gc arg a BOOL.
9301 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
9302 ns_clip_to_row() call.
9303 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
9304 used). Cast FRAME_FONT assignments.
9305 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
9306 (ns_string_to_lispmod): Change arg to const char.
9307 (ns_term_init): Use NSMenuItem class.
9308 (EmacsApp -openFile:): Move to different section of file.
9309 (EmacsApp -application:openFiles:): Don't return a value, call
9310 -replyToOpenOrPrint:.
9311 (EmacsView -keyDown:): Fix up cast.
9312 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
9313 (EmacsView -menuDown:): Cast tag in call to
9314 find_and_call_menu_selection().
9315 (ns_list_fonts): Remove, unused.
9316 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
9317 (ns_fontname_to_xlfd): Make static.
9318 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
9319 Remove prototypes (now in keyboard.h).
9320 (next_menubar_widget_id): Remove, unused.
9321 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
9322 Remove prototypes (now in keyboard.h).
9323 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
9324
9325 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
9326
9327 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
9328 (floatfns.o): Depend on syssignal.h.
9329 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
9330
9331 * systty.h: Fix previous change that removed BSD_TERMIOS.
9332 Add comments to #ifdefs.
9333
9334 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
9335
9336 * w32fns.c (w32-load-color-file): Remove.
9337 (x-open-connection): Use renamed Fx_load_color_file.
9338 * xfaces.c (x-load-color-file): Add.
9339 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
9340 Emacs.clr.
9341 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
9342
9343 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
9344
9345 * dbusbind.c (Fdbus_call_method_asynchronously)
9346 (Fdbus_method_error_internal): New defuns.
9347 (xd_read_message): Handle also reply messages.
9348 (Vdbus_registered_functions_table): Extend docstring.
9349
9350 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
9351
9352 * keyboard.c (gobble_input): Fix previous change.
9353
9354 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
9355
9356 * bitmaps/README:
9357 * xfns.c:
9358 * termcap.c:
9359 * term.c:
9360 * syswait.h:
9361 * systty.h:
9362 * systime.h:
9363 * syssignal.h:
9364 * sysdep.c:
9365 * process.h:
9366 * process.c:
9367 * print.c:
9368 * ndir.h:
9369 * lread.c:
9370 * keyboard.c:
9371 * getpagesize.h:
9372 * floatfns.c:
9373 * fileio.c:
9374 * emacs.c:
9375 * doc.c:
9376 * dispnew.c:
9377 * dired.c:
9378 * data.c:
9379 * callproc.c:
9380 * buffer.c:
9381 * README:
9382 * Makefile.in:
9383 * s/template.h:
9384 * s/msdos.h:
9385 * m/vax.h: Remove VMS support.
9386 * s/vms.h:
9387 * vlimit.h:
9388 * uaf.h:
9389 * temacs.opt:
9390 * param.h:
9391 * ioctl.h: Remove file.
9392
9393 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
9394
9395 * s/ms-w32.h (MULTI_KBOARD): Remove.
9396 * xterm.c:
9397 * xselect.c:
9398 * xfns.c:
9399 * window.c:
9400 * w32term.c:
9401 * w32fns.c:
9402 * terminal.c:
9403 * termhooks.h:
9404 * term.c:
9405 * sysdep.c:
9406 * keyboard.h:
9407 * keyboard.c:
9408 * frame.h:
9409 * frame.c:
9410 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
9411 * config.in: Regenerate.
9412
9413 2008-07-30 Jason Rumney <jasonr@gnu.org>
9414
9415 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
9416
9417 * w32font.c (w32font_encode_char): Leave as unicode if in range.
9418 (w32font_open_internal): Get unicode version of textmetrics.
9419 Don't enable or disable glyph indices here.
9420 (w32font_open): Disable use of glyph indices.
9421
9422 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
9423
9424 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
9425
9426 * minibuf.c (Vread_buffer_function): Doc fix.
9427
9428 2008-07-30 John Paul Wallington <jpw@pobox.com>
9429
9430 * minibuf.c (read_buffer_completion_ignore_case): New var.
9431 (Fread_buffer): Use it.
9432
9433 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
9434
9435 * systty.h (sensemode): Remove empty #if. Remove reference to
9436 BSD_TERMIOS, unused.
9437
9438 * sysdep.c: Remove reference to DGUX.
9439 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
9440
9441 * config.in: Regenerate.
9442
9443 2008-07-30 Jason Rumney <jasonr@gnu.org>
9444
9445 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
9446
9447 2008-07-29 Jason Rumney <jasonr@gnu.org>
9448
9449 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
9450 is populated.
9451 (uniscribe_encode_char): Always use uniscribe.
9452 Avoid using context if cache is populated.
9453
9454 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
9455
9456 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
9457 open menu.
9458
9459 * gtkutil.c (menu_nav_ended): Remove.
9460 (create_menus): Remove signal connect for menu_nav_ended.
9461
9462 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
9463
9464 * xdisp.c (redisplay_window): Check return value of
9465 compute_window_start_on_continuation_line before forcing a window
9466 start.
9467
9468 2008-07-28 Jason Rumney <jasonr@gnu.org>
9469
9470 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
9471
9472 * w32term.c (w32_enable_unicode_output, cleartype_active):
9473 Remove obsolete display options.
9474 (x_draw_glyph_string_background): Don't use old cleartype_active
9475 workaround.
9476 (w32_initialize): Remove cleartype_active initialization.
9477 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
9478
9479 2008-07-28 Andreas Schwab <schwab@suse.de>
9480
9481 * lisp.h (init_weak_hash_tables, syms_of_font)
9482 (xd_read_queued_messages, syms_of_dbusbind): Declare.
9483 (remove_hash_entry): Don't declare.
9484 * eval.c (maybe_call_debugger): Make static and move before use.
9485 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
9486 * xdisp.c: Include "gtkutil.h" if USE_GTK.
9487 * xterm.h (x_set_frame_alpha): Declare.
9488
9489 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
9490
9491 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
9492 (create_menus): Connect selection-done to menu_nav_ended.
9493
9494 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
9495
9496 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
9497 Set Vx_resource_name to a fallback. Replace read of 'buffered'
9498 parameter with read of 'alpha' one.
9499 (Qns_frame_parameter): Remove.
9500 * nsselect.m (selection-coding-system)
9501 (next-selection-coding-system, Vselection_coding_system)
9502 (Vnext_selection_coding_system): Drop.
9503
9504 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
9505
9506 * nsfns.m (do-applescript, do_applescript): Rename to
9507 ns-do-applescript, ns_do_applescript, and move within file.
9508
9509 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
9510
9511 Remove support for Mac Carbon.
9512 * mactoolbox.c:
9513 * macterm.h:
9514 * macterm.c:
9515 * macselect.c:
9516 * macmenu.c:
9517 * macgui.h:
9518 * macfns.c:
9519 * mac.c: Remove file.
9520 * s/darwin.h:
9521 * m/intel386.h:
9522 * xfaces.c:
9523 * xdisp.c:
9524 * window.c:
9525 * tparam.c:
9526 * termhooks.h:
9527 * termcap.c:
9528 * term.c:
9529 * syssignal.h:
9530 * sysselect.h:
9531 * sysdep.c:
9532 * process.c:
9533 * lread.c:
9534 * lisp.h:
9535 * keyboard.c:
9536 * image.c:
9537 * fringe.c:
9538 * frame.h:
9539 * frame.c:
9540 * fontset.c:
9541 * font.h:
9542 * font.c:
9543 * fns.c:
9544 * fileio.c:
9545 * emacs.c:
9546 * dispnew.c:
9547 * dispextern.h:
9548 * config.in:
9549 * atimer.c:
9550 * Makefile.in: Remove code for Carbon.
9551
9552 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9553
9554 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
9555
9556 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9557
9558 * macterm.h (kCGBitmapByteOrder32Host): New define for
9559 non-universal SDKs.
9560
9561 * image.c (mac_create_cg_image_from_image, image_load_image_io)
9562 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
9563
9564 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
9565 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
9566
9567 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
9568
9569 * w32inevt.c: Include dispextern.h.
9570
9571 2008-07-26 Andreas Schwab <schwab@suse.de>
9572
9573 * print.c (print_object): Fix off-by-one in last change.
9574
9575 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
9576
9577 * term.c (syms_of_term): Don't initialize default_orig_pair,
9578 default_set_foreground and default_set_background on Windows.
9579
9580 2008-07-25 Jason Rumney <jasonr@gnu.org>
9581
9582 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
9583 ScriptItemize. Clean up return value checking. Remove unused
9584 variables.
9585 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
9586 shaping engine.
9587
9588 * w32font.c (w32font_has_char): Handle the case where we can't
9589 determine the script for a character.
9590
9591 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
9592
9593 * term.c (syms_of_term): Initialize default_orig_pair,
9594 default_set_foreground, and default_set_background.
9595
9596 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
9597 clash (bug#86).
9598 (getloadavg): Callers changed.
9599
9600 * image.c (svg_load_image): Fix last change.
9601 (svg_load_image): Use rsvg_handle_get_dimensions to check that
9602 image size is valid. Use g_object_unref instead of deprecated
9603 rsvg_handle_free to free rsvg handle.
9604 (x_from_xcolors): Don't initialize pixmap (silence compiler).
9605
9606 2008-07-25 Jason Rumney <jasonr@gnu.org>
9607
9608 * w32font.c (w32font_encode_char): Encode characters outside BMP as
9609 surrogates before looking up glyph index.
9610 (w32font_text_extents): Encode as surrogates if falling back to
9611 functions that need UTF-16 wide chars.
9612
9613 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
9614 BMP as surrogates before looking up glyph index.
9615
9616 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
9617
9618 * image.c (svg_load_image): Check for failure in return value of
9619 rsvg_handle_get_pixbuf. Free rsvg handle when done.
9620
9621 2008-07-25 Jason Rumney <jasonr@gnu.org>
9622
9623 * w32font.c (Fx_select_font): Reverse sense of second arg.
9624
9625 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
9626
9627 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
9628 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
9629
9630 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
9631 (PURESIZE): Use it.
9632
9633 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
9634
9635 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
9636 * m/alpha.h (TEXT_END):
9637 * m/ibmrs6000.h (TEXT_END):
9638 * m/macppc.h (TEXT_END):
9639 * s/darwin.h (TEXT_END):
9640 * s/msdos.h (TEXT_END): Remove, unused.
9641 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
9642 * s/cygwin.h: Remove comment.
9643
9644 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
9645 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
9646 * m/intel386.h (DOT_GLOBAL_START):
9647 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
9648 (USG): Remove, file not used on USG platforms.
9649
9650 * Makefile.in (HAVE_X11): Remove empty #else.
9651
9652 2008-07-24 Andreas Schwab <schwab@suse.de>
9653
9654 * fileio.c (Finsert_file_contents): Properly adjust undo list
9655 after format conversion.
9656
9657 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
9658
9659 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
9660 (menu_nav_ended): Remove.
9661 (create_menus): Remove signal connect for menu_nav_ended.
9662 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
9663 create_menus.
9664 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
9665
9666 2008-07-23 Jason Rumney <jasonr@gnu.org>
9667
9668 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
9669 with opened font.
9670 (w32font_open): Set font type to gdi.
9671
9672 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
9673
9674 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
9675
9676 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
9677 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
9678 defines it.
9679 * unexec.c (ADDR_CORRECT): Define unconditionally.
9680
9681 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
9682
9683 * unexec.c: Remove code depending on !COFF and USG, the file is
9684 not used for such systems.
9685
9686 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
9687 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
9688 (LD_SWITCH_SYSTEM_1): Remove, update users.
9689
9690 * s/darwin.h (DATA_END):
9691 * m/intel386.h (DATA_END):
9692 * m/ibmrs6000.h (DATA_END):
9693 * m/alpha.h (DATA_END): Remove, unused.
9694
9695 * config.in: Regenerate.
9696 * s/ms-w32.h (subprocesses): Define unconditionally.
9697 * s/template.h (subprocesses): Update comment.
9698 * s/vms.h (subprocesses):
9699 * s/usg5-4.h (subprocesses):
9700 * s/hpux10-20.h (subprocesses):
9701 * s/gnu-linux.h (subprocesses):
9702 * s/cygwin.h (subprocesses):
9703 * s/bsd-common.h (subprocesses):
9704 * s/aix4-2.h (subprocesses):
9705 * s/darwin.h (subprocesses): Do not define, defined by default now.
9706
9707 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
9708 Remove all references.
9709 (temacs): Add GNUstep specific ld flags.
9710
9711 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
9712 similarly to what X does.
9713
9714 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
9715
9716 * nsfns.m (x-list-fonts): Remove.
9717 (syms_of_nsfns): Drop the x-list-fonts declaration.
9718 * nsterm.m: Get rid of remaining "//" comments.
9719
9720 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
9721
9722 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
9723
9724 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
9725 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
9726 (Fns_own_selection_internal, Fx_disown_selection_internal)
9727 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
9728
9729 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
9730 ... */' style of docstrings. Doc fixes.
9731
9732 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
9733
9734 * terminfo.c (UP, BC, PC): Undo previous change.
9735
9736 * nsfns.m: Rename ns prefixed functions/variables to the
9737 corresponding x versions. Update references.
9738
9739 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
9740
9741 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
9742
9743 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
9744
9745 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
9746 Remove forwarding functions.
9747 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
9748 non-static.
9749 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
9750 non-static.
9751 (ns_frame_parm_handlers): Use the new names.
9752 (syms_of_nsfns): Move to the end of file.
9753
9754 * nsterm.m (syms_of_nsterm): Move to the end of file.
9755
9756 * dispnew.c (init_display): Remove code for X10.
9757
9758 2008-07-22 Jason Rumney <jasonr@gnu.org>
9759
9760 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
9761 bare drive.
9762
9763 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
9764
9765 * nsterm.m (syms_of_nsterm): Remove debugging println.
9766
9767 2008-07-22 David Reitter <david.reitter@gmail.com>
9768
9769 * nsfns.m (do_applescript, F_do_applescript): NS version of the
9770 Carbon implementation of the same functionality: execute arbitrary
9771 AppleScript code.
9772
9773 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
9774
9775 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
9776 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
9777 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
9778 (Fx_display_mm_height, Fx_display_mm_width)
9779 (Fx_display_backing_store, Fx_display_visual_class)
9780 (Fx_display_save_under, Fx_open_connection)
9781 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
9782 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
9783 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
9784 (Fx_display_pixel_width, Fx_display_pixel_height)
9785 (Fx_display_usable_bounds, Fx_display_planes)
9786 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
9787 ... */' style of docstrings.
9788
9789 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
9790
9791 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
9792 on this platform.
9793 (mips):
9794 * m/iris4d.h (mips): Do not define.
9795 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
9796
9797 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
9798
9799 * image.c:
9800 * nsfns.m:
9801 * nsselect.m:
9802 * nsterm.h:
9803 * nsterm.m: Rename ns prefixed functions/variables to the
9804 corresponding x versions. Update references.
9805
9806 * m/ibms390x.h (NO_REMAP): Do not undefine.
9807
9808 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
9809
9810 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
9811
9812 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
9813 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
9814 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
9815 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
9816 (Fns_display_mm_height, Fns_display_mm_width)
9817 (Fns_display_backing_store, Fns_display_visual_class)
9818 (Fns_display_save_under, Fns_open_connection)
9819 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
9820 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
9821 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
9822 (Fns_display_pixel_width, Fns_display_pixel_height)
9823 (Fns_display_usable_bounds, Fx_display_planes)
9824 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
9825
9826 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
9827
9828 * print.c (print_object): Check print_depth before searching for
9829 circularities.
9830
9831 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
9832
9833 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
9834 only sprintf.
9835
9836 2008-07-21 Kenichi Handa <handa@m17n.org>
9837
9838 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
9839
9840 2008-07-20 Andreas Schwab <schwab@suse.de>
9841
9842 * syntax.c (find_start_pos, find_start_value)
9843 (find_start_value_byte, find_start_begv, find_defun_start)
9844 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
9845
9846 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
9847
9848 * s/sol2-3.h: Insert contents of s/sol2.h.
9849 (LD_SWITCH_SYSTEM): Remove redundant definition.
9850 * s/sol2.h: Remove, unused.
9851
9852 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
9853
9854 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
9855
9856 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
9857
9858 * Makefile.in (ns_appdir): Fix typo in find command.
9859
9860 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
9861
9862 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
9863
9864 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
9865 added not supported anymore.
9866
9867 * s/usg5-4-2.h (LIBS_SYSTEM):
9868 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
9869
9870 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
9871 * s/lynxos.h (GETPGRP_NO_ARG):
9872 * s/hpux10-20.h (NO_SIOCTL_H):
9873 * s/gnu.h (GETPGRP_NO_ARG):
9874 * s/gnu-linux.h (NO_SIOCTL_H):
9875 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
9876 * s/cygwin.h (GETPGRP_NO_ARG):
9877 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
9878 (C_DEBUG_SWITCH): Remove duplicate definition.
9879
9880 * m/ibms390.h: Remove boilerplate comments.
9881
9882 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
9883
9884 * process.c (HAVE_SERIAL): Consolidate ifdefs.
9885 (wait_reading_process_output): Remove code for SunOS, platform not
9886 supported anymore. Use SOLARIS2 instead of sun.
9887
9888 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
9889
9890 * font.c (font_open_by_name): Under NS, default lface height to zero.
9891 (font_open_for_lface): Under NS, set size based on frame fontsize.
9892 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
9893 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
9894
9895 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
9896
9897 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
9898 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
9899 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
9900 YES/NO.
9901 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
9902 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
9903 * Makefile.in (clean): Clear out build destination dir.
9904
9905 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
9906
9907 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
9908 xterm, xselect.
9909 * lisp.h: Remove declaration of hash_remove.
9910 * nsgui.h: Remove redefinitions of hash_remove.
9911 * fns.c (hash_remove): Rename to hash_remove_from_table.
9912
9913 2008-07-19 Seiji Zenitani <zenitani@mac.com>
9914
9915 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
9916 strdup() the family UTF8String before modifying it.
9917
9918 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
9919
9920 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
9921 NS_FACE_BACKGROUND with 0 instead of nil.
9922 * nsfont.m (nsfont_draw): Same.
9923
9924 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
9925
9926 * nsfns.m (ns_set_background_color): Fix crash.
9927
9928 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
9929
9930 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
9931
9932 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
9933
9934 * puresize.h (BASE_PURESIZE): Increase to 1240000.
9935
9936 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9937
9938 * gtkutil.c: Include <config.h> instead of "config.h".
9939
9940 * lisp.h (Foverlay_buffer): Add EXFUN.
9941
9942 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
9943 child process to complete child_setup. Undo 2005-09-21 change.
9944
9945 * s/darwin.h: Mention setsid after vfork.
9946
9947 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9948
9949 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
9950 Depend on macgui.h.
9951
9952 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
9953 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
9954
9955 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
9956 and f19.
9957 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
9958
9959 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
9960 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
9961 Remove enumerators.
9962
9963 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
9964 Check if FACE_FROM_ID returns NULL.
9965
9966 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
9967
9968 * w32inevt.c (change_frame_size): Remove extern declaration.
9969 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
9970 change_frame_size.
9971
9972 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
9973
9974 * getloadavg.c: Revert last change (2008-07-15).
9975
9976 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
9977
9978 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
9979 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
9980 from configure.
9981
9982 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
9983
9984 * s/sol2.h:
9985 * s/sol2-4.h: Reorganize conditionals.
9986
9987 * ecrt0.c: Remove code depending on m68000, not used anymore.
9988
9989 * fns.c (hash_remove): Make static.
9990 * lisp.h (hash_remove): Don't prototype.
9991
9992 * m/ibmrs6000.h:
9993 * m/ibms390x.h:
9994 * m/macppc.h: Remove boilerplate comments.
9995
9996 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
9997 Solaris, which does not need them.
9998
9999 * m/vax.h: Remove comments about unsupported systems.
10000
10001 * s/darwin.h: Reorganize ifdefs.
10002
10003 2008-07-17 Andreas Schwab <schwab@suse.de>
10004
10005 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
10006
10007 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
10008
10009 Use SDATA. Follow coding convention of placing operators at
10010 beginning of next line rather than end of previous line, and placing
10011 spaces around infix operators.
10012
10013 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
10014 in case it was defined already.
10015 USE @GNUSTEP_MAKEFILES@ rather than envvars.
10016 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
10017 ns_default.
10018 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
10019 Lisp_Objects.
10020 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
10021 (ns_defined_color, ns_color_to_lisp): Declare.
10022 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
10023 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
10024 it's accepted even with USE_LISP_UNION_TYPE.
10025 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
10026 (update_frame_tool_bar): Remove apparently obsolete tests for
10027 non-integerness of f->tool_bar_lines.
10028 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
10029 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
10030 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
10031 (nsfont_open): Don't confuse NULL for Qnil.
10032 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
10033 * menu.h (find_and_call_menu_selection):
10034 * menu.c (find_and_call_menu_selection): Use just int for vector size.
10035 (find_and_return_menu_selection): Always return something.
10036 * frame.h: Include dispextern.h for Display_Info.
10037 (display_x_get_resource): Declare.
10038
10039 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
10040
10041 * syntax.c: Remove stdio.h include accidentally introduced in
10042 Emacs.app commit.
10043 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
10044 NS_IMPL_COCOA.
10045 * keyboard.c (handle_async_input, input_available_signal): Remove
10046 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
10047
10048 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
10049
10050 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
10051 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
10052 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
10053 Use SDATA.
10054
10055 * keymap.c: Remove all NS-specific code.
10056 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
10057 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
10058 where_is_preferred_modifier, return a different value depending on how
10059 preferred is the binding.
10060 (where_is_internal): Adjust accordingly.
10061 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
10062 Adjust to new preferred_sequence_p.
10063 (syms_of_keymap): Declare `where-is-preferred-modifier'.
10064 * keyboard.c (parse_solitary_modifier): Not static any more.
10065 * keyboard.h (parse_solitary_modifier): Declare.
10066
10067 2008-07-16 Andreas Schwab <schwab@suse.de>
10068
10069 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
10070 of easymenu.
10071
10072 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
10073
10074 * xdisp.c (move_it_in_display_line): Account for word wrap, so
10075 that we don't move off the line.
10076
10077 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
10078
10079 * keyboard.c (Qsuper): Remove.
10080 (parse_menu_item): Don't call where_is_internal specially for NS.
10081
10082 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
10083
10084 * s/gnu-linux.h: Remove boilerplate comments.
10085
10086 * m/alpha.h (__ELF__): Consolidate conditions.
10087
10088 * m/m68k.h (linux): Use GNU_LINUX instead.
10089 Remove boilerplate comments.
10090
10091 * m/intel386.h: Undo refactoring from previous change.
10092 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
10093 too, remove dead code.
10094 (linux): Use GNU_LINUX instead.
10095
10096 2008-07-16 Jason Rumney <jasonr@gnu.org>
10097
10098 * w32gui.h: Repeat 26 June changes lost by last change.
10099
10100 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
10101
10102 * systty.h: Remove code for Aix on 386, unsupported platform.
10103
10104 * s/ms-w32.h: Remove boilerplate comments.
10105 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
10106
10107 * s/gnu-linux.h (TERM): Remove support.
10108 (HAVE_SYSVIPC): Remove, unused.
10109 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
10110 for this system.
10111
10112 * process.c: Remove support for IRIS, unused.
10113 Remove support for TERM, not relevant anymore.
10114
10115 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
10116 used with the definition.
10117
10118 * s/aix4-2.h (static): Do not undef.
10119
10120 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
10121 only used on Aix.
10122 (HAVE_SYSVIPC): Remove, unused.
10123
10124 * m/hp800.h (CANNOT_DUMP): Do not undef.
10125
10126 * m/alpha.h: Fix comment.
10127
10128 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
10129 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
10130 used by this configuration.
10131 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
10132 * unexec.c: Remove code depending on HPUX and
10133 USG_SHARED_LIBRARIES, not used with this file. Remove code
10134 depending on IRIS, unused. Remove if 0-ed code.
10135
10136 * s/template.h: Remove comments about static.
10137
10138 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
10139 Remove if 0-ed code.
10140 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
10141 were the same as the default.
10142 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
10143 Remove boilerplate comments.
10144 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
10145 (HAVE_SYSVIPC): Remove, unused.
10146 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
10147
10148 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
10149 Remove boilerplate comments.
10150 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
10151 Remove boilerplate comments.
10152 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
10153 Remove boilerplate comments.
10154 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
10155
10156 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
10157 USG systems which do not use DATA_SEG_BITS.
10158 Refactor code. Remove boilerplate comments.
10159
10160 * m/ibms390.h:
10161 * m/m68k.h:
10162 * s/bsd-common.h:
10163 * s/cygwin.h:
10164 * s/darwin.h:
10165 * s/freebsd.h:
10166 * s/gnu.h:
10167 * s/msdos.h: Remove boilerplate comments.
10168
10169 * m/iris4d.h: Remove boilerplate comments and code for systems that
10170 do not use this file.
10171 (IRIS_4D): Remove, unused.
10172
10173 * m/mips.h: Remove boilerplate comments and code for systems that
10174 do not use this file.
10175 (SIGN_EXTEND_CHAR):
10176 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
10177 * unexmips.c: Remove file, unused.
10178
10179 * editfns.c (Fuser_full_name): Replace the only use of
10180 USER_FULL_NAME with its value.
10181 * config.in: Regenerate.
10182
10183 2008-07-16 David Reitter <david.reitter@gmail.com>
10184
10185 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
10186 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
10187
10188 2008-07-16 Glenn Morris <rgm@gnu.org>
10189
10190 * emacs.c (system-type): Doc fix.
10191
10192 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
10193
10194 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
10195 If the cache doesn't work, let's fix it, rather than work around it.
10196
10197 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
10198
10199 * Makefile.in: Correct additions for nsfont.o in last commit.
10200 * nsfont.m: New file (forgot last commit).
10201
10202 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
10203
10204 * callproc.c (set_initial_environment): Initialize
10205 Vprocess_environment under CANNOT_DUMP (fixes crash when
10206 batch-compiling for bootstrap).
10207
10208 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
10209 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10210
10211 (make_initial_frame): Call init_frame_faces(f) in CANNOT_DUMP case --
10212 fix crash due to different init order.
10213
10214 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
10215
10216 Changes and additions for NeXTstep windowing system (Cocoa and
10217 GNUstep) support.
10218
10219 * Makefile.in:
10220 * config.in: Support defines and build commands for NS port.
10221 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
10222 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
10223 * dispextern.h: Include nsgui.h and add needed typedefs under NS
10224 windowing.
10225 (struct face): Add synth_ital field.
10226 * dispnew.c: Include nsterm.h when compiling under NS windowing.
10227 (init_display): Initialize Vinitial_window_system to "ns" when so
10228 compiled.
10229 * emacs.c: Include GSConfig.h when compiling under GNUstep.
10230 (display_arg): Use under NS.
10231 (main): Under NS, allocate autorelease pool and handle command line
10232 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
10233 (standard_args): Add NS-specific args.
10234 (shut_down_emacs): Shut down NS terminal if compiled under NS.
10235 * font.c (DEFAULT_ENCODING): New variable.
10236 (font_find_for_lface): Use it.
10237 (syms_of_font): Load syms_of_nsfont under NS.
10238 * font.h: Declare nsfont_driver when compiled under NS.
10239 * fontset.c: When compiling under NS, include nsterm.h.
10240 (fontset_from_font): Autoconstruct fontset under NS.
10241 * frame.c (various): Under NS, include nsterm.h, add Qns window system
10242 symbol, document and use it.
10243 (do_switch_frame): When for_deletion under Cocoa, add
10244 Fraise_frame(Qnil).
10245 (x_set_frame_parameters): Ensure font attribute changes are picked up.
10246 (x_get_arg): Allow "yes" and "no" as boolean values.
10247 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
10248 Qright under Cocoa.
10249 (focus-follows-mouse): Default to 0 under NS.
10250 * frame.h (enum output_method): Add output_ns.
10251 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
10252 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
10253 (FRAME_WINDOW_P): NS-specific definition.
10254 * fringe.c (max_used_fringe_bitmap): Make public.
10255 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
10256 (getloadavg): Use NeXT code under descendant OS's.
10257 * image.c (includes and header section, x_create_bitmap_from_data)
10258 (x_create_bitmap_from_file, free_bitmap_record, image_background)
10259 (image_background_transparent, x_clear_image_1)
10260 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
10261 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
10262 (x_to_xcolors, x_from_xcolors, x_disable_image)
10263 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
10264 other GUIs, including XPM support using code originally written for
10265 Carbon GUI.
10266 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
10267 using NS API.
10268 (image_ascent): Use font metrics macros instead of direct struct field
10269 access.
10270 * keyboard.c (includes): Add nsterm.h when compiling under NS.
10271 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
10272 Also, handle NS as GTK for menu bar purposes.
10273 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
10274 toolkit where they differ.
10275 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
10276 use cachelist, still needed under NS.
10277 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
10278 (struct widget_value): Define it here for menu.c.
10279 * keymap.c (includes): Include modifier internals.
10280 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
10281 NS.
10282 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
10283 support for preferring sequences using certain modifiers, specified by
10284 the FIRSTONLY argument.
10285 * lisp.h (hash_remove): Rename to avoid name clash when compiling
10286 under NS GNUstep implementation.
10287 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
10288 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
10289 * menu.c: Include nsterm.h under NS.
10290 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
10291 (free_menubar_widget_tree_value, update_submenu_strings)
10292 (find_and_call_menu_selection): Treat NS as X and NT.
10293 (find_and_return_menu_selection): New function, used for popup menus.
10294 * nsgui.h:
10295 * nsterm.h:
10296 * nsfns.m:
10297 * nsimage.m:
10298 * nsmenu.m:
10299 * nsselect.m:
10300 * nsterm.m: New files.
10301 * process.c (wait_reading_process_output): Under NS, call ns_select()
10302 instead of plain select().
10303 * syntax.c (char_quoted): Under NS, avoid a crash when called near
10304 beginning of buffer.
10305 * sysselect.h (init_process): Rename when compiling under Cocoa to
10306 avoid name conflict.
10307 * termhooks.h (display_info): Add ns_display_info to union.
10308 * terminal.c (Fterminal_live_p): Add ns to terminal types.
10309 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
10310 COCOA environment.
10311 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
10312 unexec() signature. (Note, this will dump, but the resulting file
10313 crashes; unexosx is used instead; keeping around for reference and
10314 possible aid in getting dump working under GNUstep.)
10315 * w32gui.h (button_type, widget_value): Remove definitions (now in
10316 keyboard.h).
10317 * window.c: Include nsterm.h when compiling under NS.
10318 * xdisp.c (includes): Include nsterm.h when compiling under NS.
10319 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
10320 other GUI windowing systems.
10321 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
10322 GTK.
10323 (x_consider_frame_title): Under NS, set icon type and frame
10324 modified-state indicator; use ns_set_name_as_filename() when using
10325 formatted title.
10326 (update_window_cursor): Make public when compiling under NS.
10327 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
10328 (hourglass_atimer, Vhourglass_delay
10329 * xfaces.c (header section, init_frame_faces, clear_font_table)
10330 (defined_color, unload_color, x_face_list_fonts)
10331 (prepare_face_for_display): Add NS support parallel to other GUIs.
10332 Emulate GCs like other non-X GUIs.
10333 (split_font_name): Don't lowercase font name under NS.
10334 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
10335 under NS.
10336 * s/darwin.h: Add support for compilation under NS.
10337
10338 2008-07-15 Jason Rumney <jasonr@gnu.org>
10339
10340 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
10341 (w32_show_hourglass): Rename from show_hourglass.
10342 (w32_hide_hourglass): Rename from hide_hourglass.
10343 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
10344 (Vhourglass_delay): Declare extern.
10345 (hourglass_started): Remove.
10346
10347 * xdisp.c (Vhourglass_delay): Remove static.
10348 (hourglass_started, start_hourglass, cancel_hourglass):
10349 Don't include these versions on WINDOWSNT.
10350
10351 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
10352
10353 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
10354 variables (formerly in xfns.c).
10355 (show_hourglass, hide_hourglass): New prototypes (same).
10356 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
10357 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
10358 in xfns.c).
10359 (syms_of_xdisp): Declare/initialize display-hourglass,
10360 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
10361 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
10362 formerly in xfns.c.
10363 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
10364 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
10365 (start_hourglass, cancel_hourglass): Remove.
10366 (show_hourglass, hide_hourglass): Remove prototypes and static
10367 modifiers.
10368 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
10369 hourglass_atimer, hourglass_shown_p declaration/initialization.
10370 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
10371 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
10372 (start_hourglass, cancel_hourglass): Remove.
10373 (show_hourglass, hide_hourglass): Remove prototypes and static
10374 modifiers.
10375 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
10376 hourglass_atimer, hourglass_shown_p declaration/initialization.
10377 * w32fns.c (display_hourglass_p, Vhourglass_delay)
10378 (DEFAULT_HOURGLASS_DELAY): Remove.
10379 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
10380 hourglass_shown_p declaration/initialization.
10381
10382 2008-07-14 Jason Rumney <jasonr@gnu.org>
10383
10384 * w32fns.c (w32_get_arg): Remove wrapper function.
10385 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
10386 directly.
10387 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
10388
10389 2008-07-14 Kenichi Handa <handa@m17n.org>
10390
10391 * xfont.c (xfont_open): Add workaround for X's bug.
10392
10393 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
10394
10395 * fontset.c: Include <stdio.h> unconditionally.
10396
10397 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
10398
10399 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
10400 for filtering.
10401
10402 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
10403
10404 * s/vms.h: Use __GNUC__ instead of _GNUC_.
10405
10406 * m/macppc.h:
10407 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
10408
10409 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default
10410 (SPECIAL_EMACS_INT):
10411 * m/ia64.h (SPECIAL_EMACS_INT):
10412 * m/amdx86-64.h (SPECIAL_EMACS_INT):
10413 * s/gnu.h (NLIST_STRUCT):
10414 * s/aix4-2.h (X11R5_INHIBIT_I18N):
10415 * s/gnu-linux.h (LINUX):
10416 * s/msdos.h (HAVE_FACES):
10417 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
10418
10419 * systty.h:
10420 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
10421 anymore.
10422
10423 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
10424
10425 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
10426 always defined as int.
10427
10428 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
10429 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
10430 * s/gnu-linux.h (HAVE_WAIT_HEADER):
10431 * s/freebsd.h (HAVE_WAIT_HEADER):
10432 * s/bsd-common.h (HAVE_UNION_WAIT):
10433 * s/aix4-2.h (HAVE_WAIT_HEADER):
10434 * m/mips.h (HAVE_UNION_WAIT):
10435 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
10436 (COFF, static): Do not define, they are undefined later in the file.
10437
10438 * process.c (update_status): Don't use a union.
10439 (status_convert):
10440 (sigchld_handler): Use int instead of WAITTYPE.
10441
10442 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
10443
10444 * indent.c (Fvertical_motion): Restore hscroll before moving to
10445 goal column.
10446
10447 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
10448
10449 * lisp.h: Remove left over code.
10450
10451 2008-07-11 Andreas Schwab <schwab@suse.de>
10452
10453 * lisp.h: Fix logic in last change.
10454
10455 * menu.h: New file.
10456 * menu.c: Include it.
10457 * xmenu.c: Likewise.
10458 * Makefile.in: Update dependencies.
10459
10460 2008-07-11 Kenichi Handa <handa@m17n.org>
10461
10462 * fontset.c (fontset_from_font): Cancel the previous change.
10463
10464 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
10465
10466 * lisp.h:
10467 * w32heap.c:
10468 * emacs.c:
10469 * alloc.c: Replace all references of NO_UNION_TYPE with
10470 USE_LISP_UNION_TYPE.
10471
10472 * m/xtensa.h (NO_UNION_TYPE):
10473 * m/vax.h (NO_UNION_TYPE):
10474 * m/template.h (NO_UNION_TYPE):
10475 * m/sparc.h (NO_UNION_TYPE):
10476 * m/mips.h (NO_UNION_TYPE):
10477 * m/macppc.h (NO_UNION_TYPE):
10478 * m/m68k.h (NO_UNION_TYPE):
10479 * m/iris4d.h (NO_UNION_TYPE):
10480 * m/intel386.h (NO_UNION_TYPE):
10481 * m/ibms390x.h (NO_UNION_TYPE):
10482 * m/ibms390.h (NO_UNION_TYPE):
10483 * m/ibmrs6000.h (NO_UNION_TYPE):
10484 * m/ia64.h (NO_UNION_TYPE):
10485 * m/hp800.h (NO_UNION_TYPE):
10486 * m/arm.h (NO_UNION_TYPE):
10487 * m/amdx86-64.h (NO_UNION_TYPE):
10488 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
10489 defining it the same.
10490
10491 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
10492
10493 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
10494
10495 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
10496
10497 * fileio.c:
10498 * sysdep.c:
10499 * systty.h:
10500 * m/ibmrs6000.h:
10501 * m/iris4d.h:
10502 * s/aix4-2.h:
10503 * s/freebsd.h:
10504 * s/gnu-linux.h:
10505 * s/hpux10-20.h:
10506 * s/hpux11.h:
10507 * s/netbsd.h:
10508 * s/sol2-3.h:
10509 * s/sol2-4.h:
10510 * s/sol2.h:
10511 * s/usg5-4.h:
10512 * s/vms.h: Remove references to unused variables.
10513
10514 2008-07-10 Andreas Schwab <schwab@suse.de>
10515
10516 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
10517 pattern before matching the generic family.
10518
10519 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
10520
10521 * unexec.c:
10522 * s/vms.h:
10523 * s/usg5-4-2.h:
10524 * s/sol2-5.h:
10525 * s/freebsd.h:
10526 * s/darwin.h: Remove dead code.
10527
10528 * m/template.h:
10529 * m/sparc.h:
10530 * m/mips.h:
10531 * m/m68k.h:
10532 * m/iris4d.h:
10533 * m/intel386.h:
10534 * m/ibms390x.h:
10535 * m/ibms390.h:
10536 * m/ia64.h:
10537 * m/hp800.h:
10538 * m/arm.h:
10539 * m/amdx86-64.h: Remove dead code and references to unused
10540 and compiler defined symbols.
10541
10542 * unexmips.c:
10543 * unexelf.c: Remove references to desupported systems.
10544
10545 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
10546
10547 * m/powermac.h: Remove boilerplate comments.
10548 (NO_REMAP): Remove unused definition.
10549
10550 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
10551 define them.
10552
10553 2008-07-10 Kenichi Handa <handa@m17n.org>
10554
10555 * xfont.c (xfont_open): Log the reason of failure.
10556
10557 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
10558
10559 * fontset.c (fontset_get_font_group):
10560 * font.c (font_check_otf): Specify argument types.
10561
10562 2008-07-09 Kenichi Handa <handa@m17n.org>
10563
10564 * coding.c (detect_coding_utf_8): Set detect_info->found only when
10565 non-ASCII char is found.
10566
10567 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
10568 (reorder_font_vector): Change the arg preferred_family to font.
10569 Prefer the spec matching with font.
10570 (fontset_get_font_group): New function.
10571 (fontset_find_font): Change the format of an element of a realized
10572 fontset. Use fontset_get_font_group.
10573 (fontset_font): Try the current fontset, the default fontset, the
10574 fallbacks of the current fontset, and the fallbacks of the default
10575 fontset in this order.
10576 (face_for_char): Delete the shortcut to use the current font.
10577 (fontset_from_font): Don't set fonts for Latin in the fontset.
10578
10579 * font.h (font_make_object, font_match_p): Adjust prototypes.
10580
10581 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
10582
10583 * font.c (font_make_object): New arg entity and pixelsize.
10584 (font_check_otf_features, font_check_otf): New functions.
10585 (font_match_p): Check :lang, :script, and :otf properties.
10586
10587 * xfont.c (xfont_open): Adjust it for the change of
10588 font_make_object.
10589 (xfont_text_extents): Fix initial setting of metrics.
10590
10591 * ftfont.c (struct ftfont_info): New member index, delete member
10592 fc_charset_idx. Make the member order compatible with struct
10593 xftfont_info.
10594 (fc_charset_table): Change charset names to registry names.
10595 (ftfont_pattern_entity): Delete the args registry and
10596 fc_charset_idx. Change the value of :font-entity property
10597 to (FONTNAME . INDEX). Always set :registry property to
10598 `iso10646-1'.
10599 (struct ftfont_cache_data): New struct.
10600 (ftfont_lookup_cache): New arg for_face.
10601 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
10602 (ftfont_driver): Set the member otf_capability.
10603 (ftfont_get_charset): Adjust it for the change of
10604 fc_charset_table.
10605 (OTF_TAG_SYM): New macro.
10606 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
10607 for the change of fc_charset_table.
10608 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
10609 ftfont_pattern_entity. Add FC_INDEX to objset.
10610 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
10611 and ftfont_pattern_entity.
10612 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
10613 font_make_object, struct ftfont_info.
10614 (ftfont_has_char): Use ftfont_get_fc_charset.
10615 (ftfont_otf_features, ftfont_otf_capability): New functions.
10616 (ftfont_shape): Use ftfont_get_otf.
10617 (ftfont_text_extents): Fix initial setting of metrics.
10618
10619 * xftfont.c (struct xftfont_info): New member ft_size. Make the
10620 member order compatible with struct ftfont_info.
10621 (xftfont_open): Add FC_CHARSET to the pattern. Set
10622 xftfont_info->ft_size. Don't unlock the face. Check BDF
10623 properties if appropriate.
10624 (xftfont_close): Unlock the face.
10625 (xftfont_anchor_point, xftfont_shape): Deleted.
10626 (syms_of_xftfont): Don't set members anchor_point and shape of
10627 xftfont_driver.
10628
10629 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
10630 font_make_object.
10631
10632 * w32font.c (w32font_open): Adjust it for the change of
10633 font_make_object.
10634 (w32font_open_internal): Don't set properties of font_object here.
10635
10636 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
10637
10638 * macfns.c (x_create_tip_frame):
10639 * w32fns.c (x_create_tip_frame):
10640 * xfns.c (x_create_tip_frame): Pass parameter argument to
10641 face-set-after-frame-default.
10642
10643 * xfaces.c (Finternal_merge_in_global_face): Save merged
10644 attributes for the default face back into the face vector.
10645
10646 2008-07-08 Andreas Schwab <schwab@suse.de>
10647
10648 * fontset.h: Declare fontset_from_font. Don't declare
10649 new_fontset_from_font and fontset_from_font_name.
10650 * xterm.c: Include "fontset.h".
10651 * Makefile.in (xterm.o): Update dependencies.
10652
10653 2008-07-08 Glenn Morris <rgm@gnu.org>
10654
10655 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
10656 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
10657
10658 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
10659
10660 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
10661 (x_set_frame_parameters): Don't bind it.
10662
10663 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
10664
10665 * w32fns.c (map_w32_filename): Declare extern.
10666
10667 2008-07-07 Jason Rumney <jasonr@gnu.org>
10668
10669 * w32term.c (WS_EX_LAYERED): Define if not already.
10670
10671 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
10672
10673 * xfaces.c (set_font_frame_param): Don't try to set the font
10674 parameter if it is still unspecified in the lface.
10675
10676 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
10677
10678 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
10679 face if it didn't already exist.
10680
10681 * xdisp.c (try_window_id): Give up if word-wrapping is on.
10682
10683 2008-07-05 Andreas Schwab <schwab@suse.de>
10684
10685 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
10686
10687 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
10688
10689 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
10690 word-wrapping.
10691 (IT_DISPLAYING_WHITESPACE): New macro.
10692 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
10693 when word-wrapping. Simplify word-wrapping logic. Use correct
10694 pixel positions when saving copies of the iterator.
10695 (display_line): Use proper wrap point if the last character on a
10696 line was preceded by whitespace.
10697
10698 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10699
10700 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
10701
10702 2008-07-04 Kenichi Handa <handa@m17n.org>
10703
10704 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
10705
10706 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
10707
10708 2008-07-02 Jason Rumney <jasonr@gnu.org>
10709
10710 * xfns.c (syms_of_xfns): Only define x-select-font when both
10711 HAVE_FREETYPE and USE_GTK.
10712
10713 * xdisp.c (next_element_from_display_vector): Move assignment out
10714 of if statement.
10715
10716 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
10717
10718 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
10719
10720 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
10721 (syms_of_fileio): Initialize and export them.
10722 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
10723
10724 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
10725 (Fsystem_move_file_to_trash): New function.
10726 (syms_of_w32fns): Export it to lisp.
10727
10728 2008-07-01 Jason Rumney <jasonr@gnu.org>
10729
10730 * w32font.c (w32font_text_extents): Don't count overhang as part
10731 of width.
10732
10733 2008-06-30 Miles Bader <miles@gnu.org>
10734
10735 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
10736 Add `avoid_cursor_p' field.
10737
10738 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
10739 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
10740 (append_glyph, append_composite_glyph, produce_image_glyph)
10741 (append_stretch_glyph): Initialize avoid_cursor_p.
10742 (get_it_property): Rename from `get_line_height_property'.
10743 (x_produce_glyphs): Use get_it_property.
10744 (handle_line_prefix, push_display_prop): New functions.
10745 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
10746 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
10747 New variables.
10748 (syms_of_xdisp): Initialize them.
10749
10750 2008-06-30 Kenichi Handa <handa@m17n.org>
10751
10752 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
10753 XftDefaultSubstitute (they are called in XftFontMatch).
10754 (xftfont_open): Fix args to ftfont_font_format.
10755
10756 * ftfont.c (fc_charset_table): New member lang.
10757 (ftfont_resolve_generic_family): New arg pattern.
10758 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
10759 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
10760 (ftfont_open): Fix args to ftfont_font_format.
10761 (ftfont_font_format): New arg filename.
10762
10763 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
10764
10765 * xfaces.c (Finternal_merge_in_global_face): If default face was
10766 modified, realize it again. Update the font face attribute.
10767
10768 2008-06-29 Jason Rumney <jasonr@gnu.org>
10769
10770 * w32term.c (x_set_frame_alpha): Fix logic.
10771
10772 2008-06-29 Kenichi Handa <handa@m17n.org>
10773
10774 * fontset.c (Finternal_char_font): Return font-object instead of
10775 font-name.
10776
10777 * composite.c (get_composition_id): Fix the width calculation for TAB.
10778
10779 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
10780
10781 * indent.c (Fvertical_motion): Properly handle float column arg.
10782
10783 2008-06-28 Jason Rumney <jasonr@gnu.org>
10784
10785 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
10786 (pfnSetLayeredWindowAttributes): New function pointer.
10787 (w32_initialize): Initialize it when supported.
10788 (x_set_frame_alpha): New function.
10789
10790 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
10791 (w32_frame_parm_handlers): Set alpha handler.
10792
10793 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
10794
10795 2008-06-27 Jason Rumney <jasonr@gnu.org>
10796
10797 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
10798 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
10799 (w32_to_x_charset, x_to_w32_charset)
10800 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
10801 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
10802 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
10803 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
10804 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
10805 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
10806 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
10807 (Qw32_charset_unicode): Remove.
10808 (syms_of_w32fns): Update for above changes.
10809
10810 * w32font.c (w32_to_x_charset, x_to_w32_charset)
10811 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
10812 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
10813 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
10814 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
10815 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
10816 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
10817 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
10818 (syms_of_w32font): Update for above changes.
10819
10820 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
10821
10822 * s/usg5-4.h: Fix previous change: keep the correct branch of a
10823 removed #if.
10824 (USG_SHARED_LIBRARIES): Remove duplicate definition.
10825
10826 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
10827 Eli Zaretskii <eliz@gnu.org>
10828
10829 * makefile.w32-in (LOCAL_FLAGS):
10830 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
10831
10832 * sysdep.c (_spawnlp, _getpid):
10833 Declare with explicit _cdecl instead of _CRTAPI1.
10834
10835 * editfns.c (Fget_internal_run_time):
10836 Check for WINDOWSNT with #ifdef, not #if.
10837
10838 2008-06-26 Jason Rumney <jasonr@gnu.org>
10839
10840 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
10841
10842 * w32term.c (x_draw_glyph_string_foreground)
10843 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
10844 Use FONT_HANDLE macro.
10845 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
10846
10847 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
10848 (uniscribe_encode_char): Use FONT_HANDLE macro.
10849
10850 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
10851 (w32font_text_extents): Use precast w32_font.
10852 (w32font_close): Free cached metrics.
10853 (w32font_open_internal): Allocate space for name on stack.
10854
10855 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
10856
10857 * xdisp.c (extend_face_to_end_of_line): Fix last change.
10858
10859 2008-06-26 Jason Rumney <jasonr@gnu.org>
10860
10861 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
10862 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
10863
10864 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
10865
10866 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
10867
10868 2008-06-26 Jason Rumney <jasonr@gnu.org>
10869
10870 * w32bdf.c, w32bdf.h: Remove obsolete files.
10871
10872 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
10873
10874 * w32gui.h: Don't include w32bdf.h.
10875 (XCharStruct, enum w32_char_font_type, W32FontStruct):
10876 Remove obsolete font support.
10877
10878 * w32font.h (struct w32font_info): Remove compat_w32_font.
10879 Add hfont member.
10880 (FONT_COMPAT): Remove obsolete macro.
10881
10882 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
10883 (w32font_encode_char, w32font_text_extents): Use new hfont member.
10884 (w32font_open_internal): Remove compat code. Set new hfont member.
10885 (Fx_select_font): Use new hfont member.
10886
10887 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
10888 (uniscribe_encode_char): Use new hfont member.
10889
10890 * w32term.c (x_draw_glyph_string_foreground)
10891 (x_draw_composite_glyph_string_foreground): Use new hfont member.
10892 (x_draw_glyph_string): Use metrics in w32font_info.
10893
10894 2008-06-26 Kenichi Handa <handa@m17n.org>
10895
10896 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
10897
10898 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
10899
10900 * unexnext.c:
10901 * m/ews4800.h:
10902 * m/hp9000s300.h:
10903 * m/ibm370aix.h:
10904 * m/mips-siemens.h:
10905 * m/ncr386.h:
10906 * m/next.h:
10907 * m/pmax.h:
10908 * m/powerpcle.h:
10909 * m/tandem-s2.h:
10910 * s/386bsd.h:
10911 * s/bsd386.h:
10912 * s/bsd4-1.h:
10913 * s/bsd4-2.h:
10914 * s/bsdos2-1.h:
10915 * s/bsdos2.h:
10916 * s/bsdos3.h:
10917 * s/bsdos4.h:
10918 * s/nextstep.h:
10919 * s/ultrix4-3.h:
10920 * s/usg5-0.h:
10921 * s/usg5-2-2.h:
10922 * s/usg5-2.h:
10923 * s/usg5-4-3.h:
10924 * s/ux4800.h:
10925 * s/uxpds.h:
10926 * s/uxpv.h: Remove support for obsolete systems.
10927 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
10928 Remove, insert contents in s/hpux10-20.h.
10929 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
10930 Remove, insert contents in s/aix4-2.h.
10931 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
10932 * s/bsd4-3.h: Rename to ...
10933 * s/bsd-common.h: ... this.
10934 * data.c:
10935 * doc.c:
10936 * ecrt0.c:
10937 * emacs.c:
10938 * fileio.c:
10939 * floatfns.c:
10940 * keyboard.c:
10941 * mem-limits.h:
10942 * print.c:
10943 * process.c:
10944 * sysdep.c:
10945 * syssignal.h:
10946 * systty.h:
10947 * syswait.h:
10948 * term.c:
10949 * unexec.c:
10950 * unexelf.c:
10951 * unexhp9k800.c:
10952 * m/hp800.h:
10953 * m/ibmrs6000.h:
10954 * m/mips.h:
10955 * m/vax.h:
10956 * s/darwin.h:
10957 * s/freebsd.h:
10958 * s/gnu.h:
10959 * s/ms-w32.h:
10960 * s/msdos.h:
10961 * s/netbsd.h:
10962 * s/template.h: Remove references to obsolete variables.
10963
10964 * Makefile.in: Add dependencies for all unexec files.
10965 (admindir): Remove unused variable.
10966 (UNEXEC_SRC): Remove references.
10967
10968 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
10969
10970 * xfns.c (x_default_font_parameter): If Xft is available, first
10971 try Monospace-12 for the default font.
10972
10973 2008-06-25 Jason Rumney <jasonr@gnu.org>
10974
10975 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
10976
10977 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
10978
10979 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
10980
10981 * buffer.c (syms_of_buffer): Remove default-word-wrap.
10982
10983 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
10984
10985 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
10986 <scroll-conservatively>: Fix typo in docstring.
10987
10988 * xselect.c (Fx_send_client_event): Doc fix.
10989
10990 2008-06-25 Kenichi Handa <handa@m17n.org>
10991
10992 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
10993
10994 * font.c (font_parse_fcname): Remove unused variables.
10995 (font_sort_entites): Delete the arg SPEC. Caller changed.
10996 Fix for the case of ! best_only.
10997 (font_delete_unmatched): Check DPI and AVGWIDTH too.
10998
10999 * lisp.h (Fstring_to_unibyte): EXFUN it.
11000
11001 * character.h (str_to_unibyte): Extern it.
11002
11003 * character.c (str_to_unibyte): New function.
11004
11005 * fns.c (Fstring_to_unibyte): New function.
11006 (syms_of_fns): Defsubr it.
11007
11008 2008-06-24 Kenichi Handa <handa@m17n.org>
11009
11010 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
11011 DPI too.
11012 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
11013
11014 2008-06-24 Andreas Schwab <schwab@suse.de>
11015
11016 * Makefile.in (${lispsource}loaddefs.el): Rename from
11017 ../lisp/loaddefs.el.
11018 (bootstrap-clean): Do what distclean does but don't remove
11019 Makefile.
11020 (distclean): Depend on bootstrap-clean and remove Makefile.
11021
11022 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
11023
11024 * buffer.h (struct buffer): New member word_wrap.
11025
11026 * buffer.c (syms_of_buffer): New variables default-word-wrap and
11027 word-wrap.
11028 (init_buffer_once): Initialize them.
11029
11030 * dispextern.h (struct it): Replace bool truncate_lines_p with a
11031 line_wrap enum possessing three possible values.
11032
11033 * termopts.h: Replace truncate_partial_width_windows with
11034 Vtruncate_partial_width_windows.
11035
11036 * dispnew.c (direct_output_for_insert): Avoid direct output when
11037 inserting a space with word wrap on.
11038
11039 * indent.c (compute_motion): Obey integer values of
11040 truncate-partial-width-windows.
11041
11042 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
11043 replacing truncate_partial_width_windows.
11044 (init_iterator): If Vtruncate_partial_width_windows is an integer,
11045 truncate only if the window width is below that integer.
11046 (start_display, resize_mini_window, produce_stretch_glyph)
11047 (display_string, move_it_in_display_line_to): Use line_wrap.
11048 (back_to_previous_visible_line_start, reseat_1): Reset
11049 string_from_display_prop_p.
11050 (display_line): Extend default face to end of line when wrapping.
11051
11052 2008-06-24 Kim F. Storm <storm@cua.dk>
11053
11054 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
11055 to wrap continued lines at word boundaries.
11056
11057 2008-06-24 Jason Rumney <jasonr@gnu.org>
11058
11059 * font.c (Ffont_face_attributes): Multiply pixel size before point
11060 conversion to avoid multiplying rounding error.
11061
11062 2008-06-23 Jason Rumney <jasonr@gnu.org>
11063
11064 * w32term.c (x_draw_glyph_string_background)
11065 (x_draw_glyph_string): Remove old bdf font code.
11066
11067 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
11068
11069 2008-06-22 Kenichi Handa <handa@m17n.org>
11070
11071 * font.c (font_find_for_lface): Try the adstyle specified in
11072 the property of LFACE_FONT of LFACE (if any).
11073
11074 2008-06-21 Seiji Zenitani <zenitani@mac.com>
11075 Ryo Yoshitake <ryo@shiftmode.net>
11076
11077 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
11078
11079 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
11080
11081 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
11082 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
11083 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
11084 (witness-emacs): Remove.
11085 (lisp, shortlisp): Move loaddefs.el earlier.
11086 (mostlyclean): Forget about witness-emacs.
11087
11088 2008-06-22 Glenn Morris <rgm@gnu.org>
11089
11090 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
11091 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
11092
11093 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11094
11095 * Makefile.in (PRECOMP): Remove.
11096 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
11097 (witness-emacs): Run `compile-first'.
11098 (.el.elc): Use the new compile-onefile target.
11099
11100 2008-06-21 Kenichi Handa <handa@m17n.org>
11101
11102 * xftfont.c (xftfont_open): Handle QCembolden only when
11103 FC_EMBOLDEN is defined.
11104
11105 2008-06-21 Andreas Schwab <schwab@suse.de>
11106
11107 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
11108 (.el.elc): Likewise.
11109
11110 2008-06-21 Miles Bader <miles@gnu.org>
11111
11112 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
11113 build dir, not the lisp source dir.
11114
11115 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11116
11117 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
11118 (bootstrapclean): Remove.
11119 (.el.elc): New rule.
11120 (PRECOMP): New var.
11121 (../lisp/subdirs.el): Remove.
11122 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
11123 (witness-emacs): New target.
11124 (mostlyclean): Remove witness-emacs as well.
11125 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
11126 Add witness-emacs dependency.
11127
11128 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
11129
11130 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
11131 defined by the font.
11132
11133 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11134
11135 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
11136 (bootstrap-clean): New target that keeps TAGS around.
11137 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
11138 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
11139
11140 2008-06-20 Jason Rumney <jasonr@gnu.org>
11141
11142 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
11143 Remove obsolete font code.
11144
11145 * w32font.c (font_matches_spec): Use csb bitfield from font signature
11146 to determine language support.
11147
11148 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11149
11150 * sysdep.c (cfsetspeed): New fun extracted from the code.
11151 (cfmakeraw): Move before first use.
11152
11153 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
11154
11155 * sysdep.c (cfmakeraw): Provide fallback implementation.
11156 (serial_configure): Provide fallback implementation of cfsetspeed.
11157
11158 2008-06-20 Kenichi Handa <handa@m17n.org>
11159
11160 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
11161 the pattern.
11162
11163 * fontset.c (fontset_from_font): Copy font_spec before changing
11164 the elements.
11165
11166 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
11167
11168 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11169
11170 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
11171 for explicit `font' parameters.
11172
11173 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
11174
11175 2008-06-19 Kenichi Handa <handa@m17n.org>
11176
11177 * frame.c: Include <ctype.h>.
11178 (x_set_font_backend): Allow spacing characters in the X resource
11179 for FontBackend.
11180
11181 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
11182
11183 * w32fns.c, xfns.c (Qfont_param): New var.
11184 (syms_of_w32fns): Initialize it.
11185 (x_default_font_parameter): Record explicit `font' into
11186 `font-parameter'.
11187
11188 2008-06-18 Kenichi Handa <handa@m17n.org>
11189
11190 * font.c (font_parse_xlfd): Fix previous change.
11191 (font_parse_fcname): Don't use :fc-unknown-spec.
11192 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
11193 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
11194 (font_add_log): Prepend the driver name to the resulting fonts.
11195
11196 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
11197 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
11198 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
11199
11200 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
11201 (QCembolden): New variables.
11202 (syms_of_xftfont): DEFSYM them.
11203 (xftfont_open): Call XftFontMatch. Don't trust the result of
11204 XftTextExtents8 if the pixel_size is less than 5.
11205
11206 2008-06-18 Andreas Schwab <schwab@suse.de>
11207
11208 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
11209 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
11210
11211 2008-06-18 Jason Rumney <jasonr@gnu.org>
11212
11213 * w32font.c (w32font_list, w32font_match): Add logging.
11214
11215 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
11216
11217 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
11218
11219 * font.c (font_parse_fcname): Store divider characters for
11220 unknown-spec list. For known key symbols, intern using correct
11221 symbol name.
11222
11223 2008-06-17 Kenichi Handa <handa@m17n.org>
11224
11225 * xfaces.c (realize_default_face): If the frame is not on window
11226 system, set the fontset of face to nil.
11227
11228 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
11229
11230 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
11231
11232 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
11233
11234 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
11235 (build_font_name_from_vector): Delete externs.
11236
11237 * xfaces.c (struct font_name): Don't declare.
11238
11239 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
11240
11241 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
11242
11243 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
11244
11245 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
11246
11247 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
11248
11249 * font.c (Ffont_spec): Fix usage in docstring.
11250 (Ffont_face_attributes): Doc fix.
11251
11252 2008-06-16 Andreas Schwab <schwab@suse.de>
11253
11254 * font.c (Ffont_face_attributes): Fix definition.
11255
11256 2008-06-16 Jason Rumney <jasonr@gnu.org>
11257
11258 * font.h (font_style_symbolic_from_value): Remove.
11259
11260 * font.c (font_style_symbolic_from_value): Remove.
11261 (font_style_symbolic): Revert to pre 2008-06-13 version.
11262
11263 * w32font.c (w32_to_fc_weight): New function.
11264 (w32font_full_name, logfont_to_fcname): Use it.
11265
11266 2008-06-16 Kenichi Handa <handa@m17n.org>
11267
11268 * font.c (font_check_object): Delete it.
11269 (font_clear_cache): Check if a font-object is alive.
11270 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
11271 font-object to nil.
11272 (font_close_object): Don't check FONT_CLOSE_OBJECT.
11273 (font_at): Don't call font_check_object.
11274 (Ffont_get): Return a symbol for :weight, :slant, and :width.
11275
11276 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
11277
11278 * puresize.h (BASE_PURESIZE): Increase to 1230000.
11279
11280 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
11281
11282 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
11283
11284 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
11285
11286 * font.c (font_parse_fcname): Only one decimal point.
11287 (font_unparse_fcname): Handle data in family and foundry indices
11288 as symbols, not strings.
11289 (font_unparse_gtkname, Ffont_face_attributes): New functions.
11290
11291 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
11292
11293 * font.h (font_unparse_gtkname): Add prototype.
11294
11295 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
11296
11297 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
11298
11299 2008-06-15 Andreas Schwab <schwab@suse.de>
11300
11301 * font.c (font_update_drivers): Fix crash when no drivers match.
11302
11303 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
11304
11305 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
11306 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
11307
11308 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
11309
11310 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
11311
11312 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
11313
11314 * process.c (Fserial_process_configure, Fprocess_send_eof):
11315 Use EQ to compare Lisp_Objects.
11316
11317 2008-06-13 Jason Rumney <jasonr@gnu.org>
11318
11319 * w32fns.c (Fw32_select_font): Remove old font API function.
11320
11321 * w32font.c (logfont_to_fcname): New function.
11322 (Fx_select_font): New font dialog function compatible with
11323 GTK/fontconfig version.
11324
11325 * font.c (font_style_symbolic_from_value): New function.
11326 (font_style_symbolic): Use it.
11327
11328 * font.h (font_style_symbolic_from_value): Declare new function.
11329
11330 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
11331
11332 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
11333 <font-width-table>: Fix typos in docstrings.
11334
11335 2008-06-13 Daniel Engeler <engeler@gmail.com>
11336
11337 These changes add serial port access.
11338 * process.c: Add HAVE_SERIAL.
11339 (Fdelete_process, Fprocess_status, Fset_process_buffer)
11340 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
11341 (list_processes_1, select_wrapper, Fstop_process)
11342 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
11343 (status_notify): Modify to handle serial processes.
11344 [HAVE_SERIAL] (Fserial_process_configure)
11345 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
11346 New functions.
11347 * process.h (struct Lisp_Process): Add `type'.
11348 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
11349 New functions.
11350 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
11351 serial ports.
11352 (serial_open, serial_configure): New functions.
11353 * w32.h: Add FILE_SERIAL.
11354 (struct _child_process): Add ovl_read, ovl_write.
11355
11356 2008-06-13 Kenichi Handa <handa@m17n.org>
11357
11358 * dispextern.h (enum lface_attribute_index): New member
11359 LFACE_FOUNDRY_INDEX.
11360
11361 * font.c (font_score): Delete arg alternate_families. Check only
11362 weight, slant, width, and size. Ignore the difference of alias
11363 style symbols.
11364 (font_sort_entites): Adjust for the above change. Reflect the
11365 order of font-driver to scores.
11366 (font_list_entities): Don't check alternate_familes here.
11367 (font_clear_prop): Handle foundry.
11368 (font_update_lface): Don't parse "foundry-family" form here.
11369 Handle FONT_FOUNDRY_INDEX.
11370 (font_find_for_lface): Likewise. Handle alternate families here.
11371 If registry is nil, try iso8859-1 and ascii-0.
11372 (font_open_for_lface): Pay attention to size in ENTITY.
11373 (font_open_by_name): Simplify by calling font_load_for_lface.
11374 (free_font_driver_list): Delete it.
11375 (font_update_drivers): Preserve the order of backends.
11376 (syms_of_font): Setting of sort_shift_bits adjusted for the change
11377 of font_score and font_sort_entites.
11378 (font_update_sort_order): Likewise.
11379
11380 * xfaces.c (LFACE_FOUNDRY): New macro.
11381 (check_lface_attrs): Check foundry.
11382 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
11383 (merge_face_vectors): Check foundry.
11384 (merge_face_ref): Likewise.
11385 (Finternal_set_lisp_face_attribute): Likewise.
11386 (x_update_menu_appearance): Likewise.
11387 (Finternal_get_lisp_face_attribute): Likewise.
11388 (lface_hash): Likewise.
11389 (lface_same_font_attributes_p): Likewise.
11390 (x_supports_face_attributes_p): Likewise.
11391 (tty_supports_face_attributes_p): Likewise.
11392 (Finternal_set_alternative_font_family_alist): Intern strings.
11393 (Finternal_set_alternative_font_registry_alist): Downcase strings.
11394 (realize_default_face): Set LFACE_FOUNDRY (lface).
11395
11396 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
11397 font-driver at first.
11398
11399 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
11400
11401 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
11402
11403 * lread.c (Fload): Use xfree, not free on saved_doc_string.
11404
11405 2008-06-12 Jim Meyering <meyering@redhat.com>
11406
11407 Make unexec_free handle NULL the same way free does.
11408 * unexmacosx.c (unexec_free): Ignore a NULL argument.
11409
11410 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
11411
11412 * character.h (CHAR_TO_BYTE_SAFE): New macro.
11413 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
11414 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
11415 (WEAK_ALIAS): Simplify.
11416 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
11417 when searching a unibyte buffer.
11418
11419 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
11420
11421 * xfns.c (Fx_select_font): Rename from x-font-dialog.
11422
11423 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
11424
11425 * w32font.c: Include ctype.h.
11426
11427 2008-06-11 Jason Rumney <jasonr@gnu.org>
11428
11429 * w32font.c (w32font_encode_char): Detect missing glyphs that are
11430 misreported as space.
11431 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
11432 as aliases for registry iso10646-1.
11433
11434 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
11435
11436 * buffer.c (clone_per_buffer_values): Skip `name'.
11437
11438 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
11439
11440 * font.c (font_parse_fcname): Fix last change; accept decimal
11441 points in font size.
11442
11443 2008-06-10 Jason Rumney <jasonr@gnu.org>
11444
11445 * w32uniscribe.c (add_opentype_font_name_to_list):
11446 Skip non unicode fonts.
11447
11448 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
11449
11450 * xfns.c (Fx_font_dialog): New function.
11451
11452 * gtkutil.c (xg_dialog_response_cb): Rename from
11453 xg_file_response_callback.
11454 (pop_down_dialog): Rename from pop_down_file_dialog.
11455 (xg_get_file_name): Callers changed.
11456 (xg_get_font_name): New function.
11457
11458 * gtkutil.h (xg_get_font_name): Insert prototype.
11459
11460 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
11461
11462 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
11463 x_underline_minimum_display_offset.
11464 (syms_of_xdisp): Declare it here rather than in xterm.c.
11465 * dispextern.h (underline_minimum_offset): Declare it.
11466 * w32term.c (x_draw_glyph_string): Use it.
11467 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
11468 (syms_of_xterm): Don't declare it any more.
11469 (x_draw_glyph_string): Adjust to the new name.
11470
11471 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
11472
11473 * xterm.c (x_underline_minimum_display_offset): New var.
11474 (x_draw_glyph_string): Use it.
11475 (syms_of_xterm): Declare it.
11476
11477 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
11478
11479 * font.c (font_parse_fcname): Accept GTK-style font names too.
11480
11481 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
11482
11483 * dired.c (file_name_completion): Don't return t if the match is exact
11484 but with different capitalization.
11485 * minibuf.c (Ftry_completion): Simplify.
11486
11487 * window.c (Vwindow_point_insertion_type): New var.
11488 (set_window_buffer): Use it.
11489 (syms_of_window): Init and export it to Lisp.
11490
11491 2008-06-10 Kenichi Handa <handa@m17n.org>
11492
11493 * font.h (font_intern_prop): Prototype adjusted.
11494
11495 * font.c (font_intern_prop): New arg force_symbol.
11496 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
11497 Adjust for the change of font_intern_prop.
11498
11499 * ftfont.c (ftfont_pattern_entity):
11500 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
11501 (w32_registry):
11502 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
11503 the change of font_intern_prop.
11504
11505 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
11506
11507 * w32menu.c (digest_single_submenu): Declare extern.
11508
11509 2008-06-09 Jason Rumney <jasonr@gnu.org>
11510
11511 * w32term.c (x_make_frame_visible): Use alternate restore flags.
11512
11513 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
11514 (parse_single_submenu): Remove.
11515 (digest_single_submenu): Remove.
11516 (syms_of_w32menu): Don't initialise variables that have moved
11517 to menu.c.
11518 (set_frame_menubar): Sync with version in xmenu.c.
11519 (w32_menu_show): Sync with xmenu_show in xmenu.c.
11520
11521 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
11522 Make static again.
11523
11524 2008-06-09 Jason Rumney <jasonr@gnu.org>
11525
11526 Changes to w32 files related to the move of common menu code
11527 to menu.c on 2008-06-08 by Chong Yidong.
11528
11529 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
11530 defs to w32gui.h.
11531 (single_keymap_panes, push_menu_item, push_menu_pane):
11532 Make globally visible.
11533
11534 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
11535 (local_free, malloc_widget_value, free_widget_value)
11536 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
11537 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
11538 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
11539 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
11540 (menu_items, menu_items_allocated, menu_items_used)
11541 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
11542 (init_menu_items, finish_menu_items, discard_menu_items)
11543 (grow_menu_items, push_submenu_start, push_submenu_end)
11544 (push_left_right_boundary, push_menu_pane, push_menu_item)
11545 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
11546 (free_menubar_widget_tree_value, parse_single_submenu)
11547 (update_submenu_strings): Remove functions.
11548 (xmalloc_widget_value): Remove and declare extern.
11549
11550 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
11551 (OBJ1): Build it.
11552
11553 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
11554 (local_heap, local_alloc, local_free, malloc_widget_value)
11555 (free_widget_value): Define here.
11556
11557 2008-06-09 Kenichi Handa <handa@m17n.org>
11558
11559 * font.h (Qascii_0): Extern it.
11560
11561 * font.c (Qascii_0): New variable.
11562 (syms_of_font): DEFSYM it.
11563 (font_open_by_name): If the registry "iso8859-1" fails, try also
11564 "ascii-0".
11565
11566 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
11567
11568 2008-06-08 Kenichi Handa <handa@m17n.org>
11569
11570 * .gdbinit (xfont): New command.
11571
11572 2008-06-08 Andreas Schwab <schwab@suse.de>
11573
11574 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
11575 * Makefile.in (menu.o): Update dependencies.
11576
11577 * Makefile.in (obj): Always add menu.o.
11578 * emacs.c (main): Always call syms_of_menu.
11579 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
11580
11581 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
11582
11583 * Makefile.in: Compile menu.c.
11584
11585 * lisp.h: Declare syms_of_menu.
11586
11587 * emacs.c (main): Call syms_of_menu.
11588
11589 * keyboard.h: Relocate platform-independent menu definitions from
11590 xmenu.c.
11591
11592 * menu.c: New file. Relocate platform-independent menu
11593 definitions from xmenu.c. Suggested by Adrian Robert.
11594
11595 * xmenu.c: Remove platform-independent menu definitions.
11596 (menu_items menu_items_inuse, menu_items_allocated)
11597 (menu_items_used, menu_items_n_panes)
11598 (menu_items_submenu_depth): Move to keyboard.h.
11599 (init_menu_items, finish_menu_items, unuse_menu_items)
11600 (discard_menu_items, restore_menu_items, save_menu_items)
11601 (grow_menu_items, push_submenu_start, push_submenu_end)
11602 (push_left_right_boundary, push_menu_pane, push_menu_item)
11603 (keymap_panes, single_keymap_panes, single_menu_item)
11604 (list_of_panes, list_of_items, find_and_call_menu_selection)
11605 (xmalloc_widget_value, free_menubar_widget_value_tree)
11606 (parse_single_submenu, digest_single_submenu)
11607 (update_submenu_strings): Move to menu.c.
11608
11609 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
11610
11611 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
11612
11613 2008-06-06 Miles Bader <miles@gnu.org>
11614
11615 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
11616 face, not frame default.
11617
11618 2008-06-05 Martin Rudalics <rudalics@gmx.at>
11619
11620 * window.c (pop_up_windows, pop_up_frames)
11621 (display_buffer_reuse_frames, Vpop_up_frame_function)
11622 (Vdisplay_buffer_function, Veven_window_heights)
11623 (Vspecial_display_buffer_names, Vspecial_display_regexps)
11624 (Vspecial_display_function, Vsame_window_buffer_names)
11625 (Vsame_window_regexps, split_height_threshold)
11626 (Vsplit_window_preferred_function): Move those vars to window.el.
11627 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
11628 (Fdisplay_buffer): Move those functions to window.el.
11629 (syms_of_window): Remove corresponding declarations.
11630 (display_buffer): New function.
11631 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
11632 * dispnew.c (Flast_nonminibuf_frame): New function.
11633 * buffer.c (Fpop_to_buffer): Move to window.el.
11634
11635 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11636
11637 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
11638
11639 2008-06-05 Kenichi Handa <handa@m17n.org>
11640
11641 * coding.c (detect_coding): Fix previous change.
11642 (detect_coding_system): Likewise.
11643
11644 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11645
11646 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
11647
11648 * keymap.c (Vminibuffer_local_filename_must_match_map):
11649 Rename from Vminibuffer_local_must_match_filename_map.
11650 (syms_of_keymap):
11651 * minibuf.c (Fcompleting_read): Adjust accordingly.
11652 * commands.h: Rename declaration as well.
11653
11654 2008-06-05 Kenichi Handa <handa@m17n.org>
11655
11656 * font.c (Ffont_spec): Don't use font_parse_family_registry for
11657 family name.
11658 (Ffont_put): Likewise.
11659
11660 * fontset.c (fontset_find_font): Call font_open_for_lface with the
11661 current font-spec.
11662
11663 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
11664 is unspecified.
11665
11666 * xfaces.c (realize_x_face): If the font-related face attributes
11667 are the same as those of default face, realize a new fontset from
11668 default->fontset.
11669 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
11670
11671 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11672
11673 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
11674 (move_it_in_display_line): New wrapper.
11675
11676 * window.c (window_scroll_pixel_based_preserve_x)
11677 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
11678 (window_scroll_pixel_based, window_scroll_line_based):
11679 Use them to preserve column positions.
11680 (syms_of_window): Initialize them.
11681
11682 * indent.c (Fvertical_motion): Extend first arg to allow passing an
11683 (HPOS . VPOS) pair.
11684
11685 * dispextern.h (move_it_in_display_line): Declare.
11686
11687 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
11688
11689 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
11690 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
11691 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
11692
11693 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
11694
11695 * window.c (Fset_window_parameter): Doc fix.
11696 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
11697
11698 2008-06-04 Joakim Verona <joakim@verona.se>
11699
11700 * window.h (struct window): Add new member window_parameters.
11701
11702 * window.c (Fwindow_parameters, Fwindow_parameter)
11703 (Fset_window_parameter): New defuns.
11704 (syms_of_window): Defsubr the new defuns.
11705 (make_window): Initialize window_parameters to nil.
11706
11707 2008-06-04 John Paul Wallington <jpw@pobox.com>
11708
11709 * eval.c (Fdefmacro): Doc fix.
11710
11711 2008-06-04 Kenichi Handa <handa@m17n.org>
11712
11713 * coding.c (detect_coding): Fix handling of coding->head_ascii.
11714 Be sure to call setup_coding_system when we find a proper coding system.
11715 (detect_coding_system): Fix handling of coding->head_ascii.
11716
11717 2008-06-03 Andreas Schwab <schwab@suse.de>
11718
11719 * font.c (font_prop_validate_spacing): Fix last change.
11720
11721 2008-06-03 Kenichi Handa <handa@m17n.org>
11722
11723 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
11724 (font_parse_fcname): Fix handling of unknown key.
11725
11726 * xfont.c (xfont_list): Try an alias.
11727
11728 * charset.c (char_charset): Return NULL if the arg charset_list is
11729 specified and C doesn't belong to any of them.
11730
11731 2008-06-02 Chip Coldwell <coldwell@redhat.com>
11732
11733 * font.c (font_pixel_size): Don't take cdr of an integer.
11734
11735 2008-06-02 Jim Meyering <meyering@redhat.com>
11736
11737 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
11738 * alloc.c (xfree): Return right away for a NULL arg.
11739 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
11740 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
11741 * mac.c (create_apple_event_from_event_ref): Likewise.
11742 (create_apple_event_from_drag_ref, cfstring_create_normalized):
11743 Likewise.
11744 * doprnt.c (doprnt1): Likewise.
11745 * frame.c (frame): Likewise.
11746 * keyboard.c (wipe_kboard): Likewise.
11747 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
11748 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
11749 * term.c (tty_default_color_capabilities, maybe_fatal)
11750 (delete_tty): Likewise.
11751 * w16select.c (string): Likewise.
11752 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
11753 * w32bdf.c (w32_free_bdf_font): Likewise.
11754 * w32fns.c (w32_unload_font): Likewise.
11755 * w32font.c (w32font_close): Likewise.
11756 * window.c (size_window): Likewise.
11757 * xselect.c (receive_incremental_selection): Likewise.
11758 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
11759 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
11760 * w32.c (stat): Likewise.
11761
11762 Remove useless if-before-free tests.
11763 * editfns.c (Fset_time_zone_rule): Likewise.
11764 * lread.c (nosuffix): Likewise.
11765 * ralloc.c (get_bloc): Likewise.
11766 * regex.c (reg_free): Likewise.
11767 * xftfont.c (xftfont_open, xftfont_close): Likewise.
11768 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
11769 * xsmfns.c (smc_save_yourself_CB): Likewise.
11770
11771 2008-06-02 Kenichi Handa <handa@m17n.org>
11772
11773 * font.c (font_find_for_lface): Handle float font size.
11774 (font_open_for_lface): Likewise.
11775
11776 * xfaces.c (x_supports_face_attributes_p): Check face->font before
11777 comparing the properties.
11778
11779 2008-06-01 Jason Rumney <jasonr@gnu.org>
11780
11781 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
11782 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
11783 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
11784 Don't add empty script list.
11785 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
11786
11787 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
11788
11789 * Makefile.in (dot, dotdot): Remove, update users.
11790 ".." has been used elsewhere in the file for a long time.
11791 (LIBXT_STATIC): Remove conditional based on unused variable.
11792
11793 2008-06-01 Miles Bader <miles@gnu.org>
11794
11795 * xfaces.c (Vface_remapping_alist): New variable.
11796 (syms_of_xfaces): Initialize it.
11797 (enum named_merge_point_kind): New type.
11798 (struct named_merge_point): Add `named_merge_point_kind' field.
11799 (push_named_merge_point): Make cycle detection respect different
11800 named-merge-point kinds.
11801 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
11802 Remove face-name alias resolution.
11803 (lface_from_face_name): New definition using
11804 `lface_from_face_name_no_resolve'.
11805 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
11806 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
11807 (get_lface_attributes): New definition that layers face-remapping on
11808 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
11809 (lookup_basic_face): New function.
11810 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
11811 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
11812 `get_lface_attributes'.
11813 (face_at_buffer_position): Use `lookup_basic_face' to lookup
11814 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
11815 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
11816
11817 * xdisp.c (init_iterator): Pass base_face_id through
11818 `lookup_basic_face' when we actually use it as a face-id.
11819 (handle_single_display_prop): Use `lookup_basic_face' to lookup
11820 DEFAULT_FACE_ID.
11821
11822 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
11823 lookup the initial face-id.
11824
11825 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
11826
11827 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
11828
11829 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
11830 (Fremove_text_properties): Fix typos in docstrings.
11831
11832 2008-05-31 Kenichi Handa <handa@m17n.org>
11833
11834 * font.c (font_list_entities): Fix the car part of data to be
11835 stored in the cache.
11836
11837 * ftfont.c (ftfont_font_format): Don't use strcasestr.
11838
11839 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11840
11841 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
11842 Add a `test' argument so another predicate than `equal' can be used.
11843 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
11844 (map_char_table): Remove unused vars `c' and `i'.
11845 * lisp.h (Foptimize_char_table): Adjust declaration.
11846 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
11847
11848 2008-05-30 Kenichi Handa <handa@m17n.org>
11849
11850 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
11851 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
11852 defined.
11853
11854 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11855
11856 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
11857 (Fmake_variable_frame_local): Disallow mixing buffer-local and
11858 frame-local settings for the same variable.
11859
11860 2008-05-30 Kenichi Handa <handa@m17n.org>
11861
11862 * fontset.c (Ffont_info): Move to font.c.
11863 (syms_of_fontset): Delete defsubr of Sfont_info.
11864
11865 * font.c (font_style_to_value, font_score): Delete casting of the
11866 args to xstcasecmp.
11867 (register_font_driver): Increment num_font_drivers only when
11868 registering the driver globally.
11869 (Ffont_info): Move from fontset.c. Handle a font object too.
11870 (syms_of_font): Defsubr Sfont_info.
11871
11872 2008-05-29 Kenichi Handa <handa@m17n.org>
11873
11874 * coding.h (enum define_coding_utf8_arg_index): New enum.
11875 (enum coding_attr_index): Change coding_attr_utf_16_bom to
11876 coding_attr_utf_bom.
11877 (enum utf_bom_type): Rename from utf_16_bom_type.
11878 (struct utf_16_spec): Adjust for the above change.
11879 (struct coding_system): Add utf_8_bom in `spec' union.
11880
11881 * coding.c (CODING_UTF_8_BOM): New macro.
11882 (enum coding_category): Delete coding_category_utf_8, add
11883 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
11884 coding_category_utf_8_sig.
11885 (CATEGORY_MASK_UTF_8): Delete it.
11886 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
11887 (CATEGORY_MASK_UTF_8_SIG): New macros.
11888 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
11889 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
11890 CATEGORY_MASK_UTF_8_SIG.
11891 (CATEGORY_MASK_UTF_8): New macro.
11892 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
11893 (detect_coding_utf_8): Check BOM.
11894 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
11895 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
11896 (encode_coding_utf_16): Likewise.
11897 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
11898 (detect_coding, detect_coding_system): Handle utf-8-auto.
11899 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
11900 (syms_of_coding): Fix setting up of Vcoding_category_table.
11901
11902 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
11903
11904 * process.c (Faccept_process_output): If `millisec' is non-nil,
11905 `seconds' default to 0.
11906 (wait_reading_process_output): Also return non-nil if we read output
11907 from a non-running process.
11908
11909 2008-05-29 Jason Rumney <jasonr@gnu.org>
11910
11911 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
11912 `raster' specified.
11913 (add_font_entity_to_list): Allow non-opentype truetype fonts back
11914 in the uniscribe backend, but disallow any font that has no
11915 unicode subrange support.
11916
11917 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
11918
11919 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
11920 Fix typos in docstrings.
11921
11922 2008-05-29 Kenichi Handa <handa@m17n.org>
11923
11924 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
11925 (Fx_family_fonts): Set frame correctly.
11926
11927 2008-05-28 Jason Rumney <jasonr@gnu.org>
11928
11929 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
11930
11931 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
11932
11933 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
11934 calling build_annotations.
11935
11936 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
11937
11938 * coding.c (Fdecode_coding_region, Fencode_coding_region)
11939 (Fencode_coding_string):
11940 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
11941 <latin-extra-code-table>: Fix typos in docstrings.
11942 (syms_of_coding) <coding-system-alist>: Doc fix.
11943 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
11944
11945 2008-05-28 Kenichi Handa <handa@m17n.org>
11946
11947 * fontset.c (Ffont_info): Don't call font_close_object.
11948
11949 * font.c (font_parse_family_registry): Use Ffont_put to validate
11950 foundry and family.
11951 (font_delete_unmatched): Don't check spacing.
11952 (font_list_entities): Add spacing to the spec to list fonts.
11953
11954 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
11955 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
11956
11957 * coding.c (encode_coding_raw_text): Fix previous change.
11958 (encode_coding_object): When the dst_object is a buffer and is
11959 different from src_object, move gap to PT.
11960
11961 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
11962
11963 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
11964
11965 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
11966
11967 * coding.c (encode_coding_raw_text): Set coding->produced_char for
11968 all branches. Compute it differently.
11969
11970 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
11971
11972 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
11973
11974 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
11975 into "else if () ... else ...".
11976
11977 2008-05-27 Jason Rumney <jasonr@gnu.org>
11978
11979 * w32font.c (w32font_open_internal): Determine if glyph indices
11980 are likely to work here.
11981
11982 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
11983
11984 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
11985 draw overlap glyphs with appropriate highlighting.
11986
11987 2008-05-27 Kenichi Handa <handa@m17n.org>
11988
11989 * xfont.c (xfont_open): Fix calculation of font->average_width.
11990
11991 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
11992
11993 * casefiddle.c (casify_object): Try to guess better whether the
11994 argument is a byte or a char.
11995
11996 2008-05-26 Andreas Schwab <schwab@suse.de>
11997
11998 * xselect.c (x_reply_selection_request): Properly handle format == 32.
11999 Always send multiples of format size.
12000
12001 * xterm.c (x_set_frame_alpha): Fix type mismatch.
12002
12003 2008-05-26 Jason Rumney <jasonr@gnu.org>
12004
12005 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
12006 (compute_metrics): Don't set failure if we just cleared the cache.
12007 (w32_weight_table): Remove unused variable.
12008 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
12009 backwards compatibility.
12010
12011 2008-05-25 Kenichi Handa <handa@m17n.org>
12012
12013 * w32term.c (x_draw_glyph_string):
12014 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
12015
12016 * xfaces.c: Delete unused function prototypes.
12017 (xstrlwr, font_frame): Delete them.
12018 (clear_face_cache): Delete unused variable.
12019
12020 * xftfont.c (xftfont_open): Delete unused variable.
12021 If underline_thickness is not 1, adjust underline_position.
12022
12023 * ftxfont.c (ftxfont_open): Delete unused variable.
12024
12025 * fontset.c (face_for_char): Optimize for the case of no charset
12026 property.
12027
12028 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
12029 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
12030 (otf_open, font_otf_capability, generate_otf_features)
12031 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
12032 Comment out by surrounding "#if 0" and "#endif" for the moment.
12033 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
12034 (syms_of_font): Codes for accessing above commented out.
12035
12036 2008-05-24 Eli Zaretskii <eliz@gnu.org>
12037
12038 * w32proc.c: Include dispextern.h.
12039
12040 * w32.c: Include dispextern.h.
12041
12042 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
12043
12044 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
12045 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
12046 Fix typos in docstrings.
12047
12048 2008-05-23 Jason Rumney <jasonr@gnu.org>
12049
12050 * xsmfns.c: Remove includes that are already included by config.h.
12051
12052 2008-05-23 Kenichi Handa <handa@m17n.org>
12053
12054 * charset.c (Qemacs, charset_emacs): New variables.
12055 (char_charset): Fix for non-Unicode characters.
12056 (syms_of_charset): Define charset_emacs.
12057
12058 * w32term.c (x_draw_glyph_string): Be sure to update
12059 s->underline_thickness and s->underline_position. Be sure to draw
12060 underline within the current line area.
12061
12062 * xterm.c (x_draw_glyph_string): Be sure to update
12063 s->underline_thickness and s->underline_position. Be sure to draw
12064 underline within the current line area.
12065
12066 * fontset.c: Delete unused variables and add casting for char *
12067 throughout the file.
12068 (fontset_font): Try the fallback fonts of the current fontset
12069 before consulting the default fontset.
12070
12071 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
12072
12073 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
12074
12075 2008-05-22 Jason Rumney <jasonr@gnu.org>
12076
12077 * font.c: Don't include strings.h.
12078
12079 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
12080
12081 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
12082 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
12083 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
12084 to call xstrcasecmp.
12085
12086 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
12087
12088 * fontset.c (fs_query_fontset): Use xstrcasecmp.
12089
12090 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
12091
12092 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
12093
12094 2008-05-22 Kenichi Handa <handa@m17n.org>
12095
12096 * puresize.h (BASE_PURESIZE): Increase to 1220000.
12097
12098 * font.c (font_prop_validate_style): Adjust for the format
12099 change of font_style_table.
12100
12101 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
12102 two args.
12103
12104 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
12105 two args.
12106
12107 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
12108
12109 * minibuf.c (keys_of_minibuf): Delete.
12110 * lisp.h (keys_of_minibuf): Delete.
12111 * emacs.c (main): Don't call keys_of_minibuf.
12112
12113 2008-05-22 Kenichi Handa <handa@m17n.org>
12114
12115 * ftfont.c (ftfont_resolve_generic_family): Rename from
12116 ftfont_list_generic_family. Return a single family for each
12117 generic family.
12118 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
12119 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
12120 Call font_add_log.
12121 (ftfont_match): Call font_add_log.
12122
12123 * font.h (Ffont_xlfd_name): EXFUN adjusted.
12124 (FONT_DEBUG): Define it.
12125 (font_add_log): Extern it.
12126 (font_assert): Rename from xassert.
12127
12128 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
12129 (xfont_list_family): Call font_add_log.
12130 (xfont_match): Likewise.
12131 (memq_no_quit): Delete.
12132
12133 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
12134 call of Ffont_xlfd_name.
12135
12136 * xfaces.c (struct table_entry, slant_table, weight_table)
12137 (swidth_table): Move to font.c.
12138
12139 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
12140 xassert are changed to font_assert. Delete many unused variables.
12141 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
12142 New variables.
12143 (struct table_entry): Move from xfaces.c and modified.
12144 (weight_table, slant_table, width_table): Move from xfaces.c and
12145 contents adjusted for the change of struct table_entry.
12146 (font_style_to_value, font_style_symbolic): Adjust for the
12147 format change of font_style_table.
12148 (font_parse_family_registry): Don't overwrite existing foundry and
12149 family of font_spec.
12150 (font_score): Fix calculation of diff for sizes.
12151 (font_sort_entites): Call font_add_log.
12152 (font_delete_unmatched): Return a newly created list.
12153 (font_list_entities): Fix previous change. Call font_add_log.
12154 (font_matching_entity, font_open_entity, font_close_entity):
12155 Call font_add_log.
12156 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
12157 (Finternal_set_font_style_table): Delete.
12158 (BUILD_STYLE_TABLE): New macro.
12159 (build_style_table): New function.
12160 (Vfont_log, font_log_env_checked): New variables.
12161 (font_add_log): New function.
12162 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
12163 Declare Lisp variables "font-weight-table", "font-slant-table",
12164 "font-width-table", and "font-log". Initialize font_style_table.
12165
12166 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
12167
12168 * xterm.c (x_set_frame_alpha): Move declarations before statements.
12169
12170 2008-05-21 Seiji Zenitani <zenitani@mac.com>
12171 Ryo Yoshitake <ryo@shiftmode.net>
12172
12173 * frame.c (Qalpha): Add a new frame parameter `alpha'.
12174 (Vframe_alpha_lower_limit): New variable.
12175 (x_set_alpha): New function.
12176
12177 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
12178
12179 * xfns.c (x-create-frame, Qalpha):
12180 Initialize the frame parameter `alpha'.
12181 * xterm.c (OPAQUE, OPACITY): New.
12182 (x_set_frame_alpha): New function.
12183 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
12184
12185 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
12186 * w32fns.c (w32_frame_parm_handlers): Likewise.
12187
12188 2008-05-20 Jason Rumney <jasonr@gnu.org>
12189
12190 * w32font.c (add_font_entity_to_list): Don't add non-opentype
12191 truetype fonts to opentype list.
12192
12193 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
12194
12195 * fontset.c (Ffontset_info): Doc fix.
12196 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
12197 <ignore-relative-composition>: Fix typos in docstrings.
12198
12199 * font.c (syms-of-font) <font-encoding-alist>:
12200 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
12201 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
12202 (Ffont_otf_alternates): Doc fixes.
12203
12204 2008-05-20 Kenichi Handa <handa@m17n.org>
12205
12206 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
12207 font.h through out the file.
12208 (FONT_DRIVERS): Rename from FONTOBJ.
12209 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
12210 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
12211
12212 * emacs.c (main): Call syms_of_font unconditionally.
12213
12214 * font.h (find_font_encoding): Extern it.
12215
12216 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
12217 fontset.c.
12218 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
12219 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
12220 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
12221 only when HAVE_WINDOW_SYSTEM is defined.
12222 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
12223 when HAVE_WINDOW_SYSTEM is defined.
12224
12225 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
12226 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
12227
12228 * xfaces.c: Include font.h unconditionally.
12229 (merge_face_ref, merge_face_vectors)
12230 (Finternal_set_lisp_face_attribute): Cancel the previous change.
12231
12232 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
12233
12234 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
12235 indirect_variable.
12236 * eval.c (lisp_indirect_variable): New fun.
12237 (Fuser_variable_p): Use it.
12238
12239 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
12240
12241 * lisp.h (indirect_variable):
12242 * data.c (indirect_variable, let_shadows_buffer_binding_p):
12243 Use Lisp_Symbol pointers rather than Lisp_Object.
12244 Adjust callers.
12245 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
12246 To this end, change calling-convention.
12247
12248 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
12249 if some non-hidden buffers are selected by string&pred.
12250
12251 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
12252
12253 * process.c (wait_reading_process_output): Always check status
12254 when in batch mode.
12255
12256 2008-05-19 Kenichi Handa <handa@m17n.org>
12257
12258 * font.c (font_list_entities): Fix handling of cache.
12259 (font_matching_entity): Likewise.
12260
12261 * ftfont.c (cs_iso8859_1): Delete.
12262 (ft_face_cache): New variable.
12263 (struct ftfont_info): New member fc_charset_idx.
12264 (ftfont_build_basic_charsets): Delete.
12265 (fc_charset_table): New variable.
12266 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
12267 . FC_CHARSET_IDX) as :font-entity property in the font entity.
12268 Callers changed.
12269 (ftfont_lookup_cache, ftfont_get_charset): New functions.
12270 (ftfont_spec_pattern): New argument fc_charset_idx.
12271 Check registry more rigidly. Change callers.
12272 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
12273 change of :font-entity property of the font.
12274
12275 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
12276 property of the font.
12277
12278 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
12279
12280 * coding.c (Fcoding_system_p): Rename argument to match docstring.
12281 (Funencodable_char_position, Fcheck_coding_systems_region)
12282 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
12283 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
12284 (Ffind_operation_coding_system, Fset_coding_system_priority)
12285 (Fcoding_system_eol_type): Doc fixes.
12286
12287 2008-05-17 Glenn Morris <rgm@gnu.org>
12288
12289 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
12290
12291 2008-05-16 Eli Zaretskii <eliz@gnu.org>
12292
12293 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
12294 and st_gid.
12295
12296 * frame.c (Fdelete_frame): Don't call font_update_drivers if
12297 HAVE_WINDOW_SYSTEM is not defined.
12298
12299 * xfaces.c (merge_face_ref, merge_face_vectors)
12300 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
12301 HAVE_WINDOW_SYSTEM is defined.
12302 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
12303
12304 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
12305
12306 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
12307
12308 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12309
12310 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
12311
12312 2008-05-15 Kenichi Handa <handa@m17n.org>
12313
12314 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
12315 preference.
12316
12317 2008-05-15 Glenn Morris <rgm@gnu.org>
12318
12319 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
12320
12321 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
12322
12323 * fns.c (init_fns): Don't initialize weak_hash_tables here.
12324 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
12325
12326 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
12327
12328 2008-05-15 Kenichi Handa <handa@m17n.org>
12329
12330 * ftfont.c (ftfont_list): Downcase family name to check generic
12331 families.
12332
12333 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
12334 font-spec for QCfont value.
12335
12336 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
12337 buffer. Check the return value of it.
12338
12339 2008-05-14 Jason Rumney <jasonr@gnu.org>
12340
12341 * w32term.c (w32_get_glyph_overhangs): Remove.
12342 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
12343
12344 2008-05-14 Kenichi Handa <handa@m17n.org>
12345
12346 * font.c (font_prop_validate): Make nil a valid value.
12347 (font_clear_cache): Check if the cached vector of entities is nil
12348 or not.
12349
12350 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12351
12352 * emacs.c (main_thread): Conditionalize on
12353 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
12354 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
12355
12356 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
12357 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
12358 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
12359
12360 2008-05-14 Kenichi Handa <handa@m17n.org>
12361
12362 * coding.c (detect_coding_iso_2022): Ignore a coding category that
12363 has no corresponding coding system.
12364
12365 2008-05-14 Jason Rumney <jasonr@gnu.org>
12366
12367 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
12368
12369 * w32font.h (w32font_open_internal): Update declaration.
12370
12371 * w32font.c (w32font_open_internal): Change last argument from
12372 w32font_info struct to font object. Fill in font object from
12373 font_entity. Get Outline metrics if possible. Use them to
12374 calculate underline position and thickness. Use xlfd name as name
12375 property. Don't set codepage.
12376 (w32font_open): Pass font_object to w32font_open_internal. Don't
12377 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
12378 (w32font_draw): Use s->font.
12379 (clear_cached_metrics): Don't clear non-existent blocks.
12380
12381 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
12382 font was not found.
12383 (x_draw_glyph_string): Use underline position and thickness from font.
12384
12385 * w32uniscribe.c (uniscribe_open): Pass font_object to
12386 w32font_open_internal.
12387
12388 2008-05-14 Kenichi Handa <handa@m17n.org>
12389
12390 These changes are to delete all legacy font-handling codes, and
12391 make Emacs use only font-backends.
12392
12393 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
12394 (frame.o, image.o, print.o): Depend on $(FONTSRC).
12395
12396 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
12397
12398 * charset.h (Vcharset_non_preferred_head)
12399 (Vcurrent_iso639_language): Extern them.
12400
12401 * charset.c (Vcharset_non_preferred_head): New variable.
12402 (Vcurrent_iso639_language): New variable.
12403 (syms_of_charset): Declare it as a Lisp variable.
12404 (char_charset): Don't check non preferred charsets. As a last
12405 resort, return charset_unicode.
12406 (Fset_charset_priority): Update Vcharset_non_preferred_head.
12407
12408 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
12409 conditionals. Don't check enable_font_backend. Delete all codes
12410 used only when USE_FONT_BACKEND is not defined.
12411
12412 * dispextern.h (struct glyph_string): Change type of `font' to
12413 `struct font *'.
12414 (struct glyph_string): New member underline_position and
12415 underline_thickness.
12416 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
12417 (struct face): Change type of `font' to `struct font *'. Remove
12418 members `font_name', `font_info_id'.
12419 (per_char_metric, encode_char): Delete externs.
12420 (calc_pixel_width_or_height): Adjust the prototype.
12421
12422 * emacs.c (enable_font_backend): Delete extern.
12423 (main): Don't set enable_font_backend. Don't check the command
12424 line argument "-disable-font-backend".
12425
12426 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
12427 (enum font_property_index): New members FONT_DPI_INDEX,
12428 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
12429 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
12430 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
12431 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
12432 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
12433 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
12434 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
12435 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
12436 (struct font_spec, struct font_entity): New structs.
12437 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
12438 (struct font): Many members from old "struct font_info" moved to
12439 here. Members font and entity deleted.
12440 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
12441 the new font-related objects.
12442 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
12443 (CHECK_FONT_GET_OBJECT): Likewise.
12444 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
12445 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
12446 (struct font_driver): New members case_sensitive anc check. Type
12447 of the member list and open changed.
12448 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
12449 (font_symbolic_width, font_find_object, font_get_spec)
12450 (font_set_lface_from_name): Delete extern.
12451 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
12452
12453 * font.c: Include <strings.h>.
12454 (enable_font_backend): Delete it.
12455 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
12456 (CHECK_VALIDATE_FONT_SPEC): Delete it.
12457 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
12458 (null_string): Delete it.
12459 (null_vector): Make it static.
12460 (font_family_alist): Delete it.
12461 (Qnormal): Extern it.
12462 (QCextra, QClanguage): Delete it.
12463 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
12464 (font_make_spec, font_make_entity, font_make_object)
12465 (font_intern_prop): Renamed from intern_downcase. Don't downcase
12466 the string. Callers changed.
12467 (font_pixel_size): Adjusted for the format change of font-related
12468 objects.
12469 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
12470 (font_style_to_value, font_style_symbolic): New function.
12471 (build_font_family_alist): Delete it.
12472 (font_registry_charsets): Use Fassoc_string instead of
12473 assq_no_quit.
12474 (font_prop_validate_symbol): Don't return null_string.
12475 (font_prop_validate_style): Adjusted for the change of
12476 style-related values in a font vector.
12477 (font_property_table): Delete entries for QClanguage and
12478 QCantialias, add entries for QCavgwidth.
12479 (get_font_prop_index): Delete the 2nd argument FROM.
12480 (font_prop_validate): Arguments changed.
12481 (font_put_extra): Adjusted for the change of font-related objects.
12482 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
12483 (font_parse_fcname, font_unparse_fcname)
12484 (font_prepare_composition): Likewise.
12485 (font_parse_family_registry): Renamed from font_merge_old_spec.
12486 (otf_open): Delete the 1st arg entity.
12487 (font_otf_capability): Adjusted for the above change.
12488 (font_score): New arg alternate_families. Adjusted for the change
12489 of font-related objects.
12490 (font_sort_entites): New arg best_only.
12491 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
12492 Delete them.
12493 (font_match_p): Check alternate families.
12494 (font_find_object): Delete it.
12495 (font_check_object): New function.
12496 (font_clear_cache): Adjusted for the change of font-related objects.
12497 (font_delete_unmatched): New arg.
12498 (font_list_entities): Call font_driver->list with a spec that
12499 doesn't specify style-related properties.
12500 (font_matching_entity): Arguments changed. Caller changed.
12501 (font_open_entity): Adjusted for the change of font-related objects.
12502 (font_close_object, font_has_char, font_encode_char)
12503 (font_get_name, font_get_spec): Likewise.
12504 (font_spec_from_name, font_clear_prop, font_update_lface):
12505 New functions.
12506 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
12507 (font_prepare_for_face, font_done_for_face, font_open_by_name)
12508 (font_at): Adjusted for the change of font-related objects.
12509 (font_range): New function.
12510 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
12511 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
12512 (Fcopy_font_spec, Fmerge_font_spec): New function.
12513 (Ffont_family_list): Renamed from list-families.
12514 (Finternal_set_font_style_table): Arguments changed.
12515 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
12516 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
12517 change of font-related objects.
12518 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
12519
12520 * fontset.h (struct font_info): Delete it. Most members go to
12521 struct font.
12522 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
12523 (enum FONT_SPEC_INDEX): Delete it.
12524 (font_info, list_fonts_func, load_font_func, query_font_func)
12525 (set_frame_fontset_func, find_ccl_program_func)
12526 (get_font_repertory_func, new_fontset_from_font_name): Delete
12527 externs.
12528 (fontset_from_font_name): Extern it.
12529 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
12530 (FONT_INFO_FROM_FACE): Deleted.
12531 (face_for_font): Adjust prototype.
12532
12533 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
12534 conditionals. Don't check enable_font_backend. Delete all codes
12535 used only when USE_FONT_BACKEND is not defined.
12536 (get_font_info_func, list_font_func, load_font_func)
12537 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
12538 (get_font_repertory_func): Delete them.
12539 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
12540 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
12541 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
12542 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
12543 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
12544 (fontset_compare_rfontdef): New function.
12545 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
12546 rfont-defs by qsort. Adjusted for the change of font-group vector.
12547 (load_font_get_repertory): Deleted.
12548 (fontset_find_font): Use new macros to ref/set elements of
12549 font-def and rfont-def.
12550 (fontset_font): Fix the timing of remembering that no font for C.
12551 (free_face_fontset): Do nothing if the face has no fontset.
12552 (face_suitable_for_char_p): Use new macros to ref/set elements of
12553 rfont-def.
12554 (face_for_char): Likewise. Call face_for_char with font_object.
12555 (fs_load_font): Delete. Delete #pragma surrounding it.
12556 (fs_query_fontset): Use strcasecmp instead of strcmp.
12557 (generate_ascii_font_name): Adjusted for the format change of
12558 font-spec.
12559 (Fset_fontset_font): Likewise. Use new macros to set elements of
12560 font-def.
12561 (Fnew_fontset): Use font_unparse_xlfd to generate
12562 FONTSET_ASCII (fontset).
12563 (new_fontset_from_font_name): Deleted.
12564 (fontset_from_font): Renamed from new_fontset_from_font. Check if
12565 a fontset is already created for the font. FIx updating of
12566 Vfontset_alias_alist.
12567 (fontset_ascii_font): Deleted.
12568 (Ffont_info): Adjusted for the format change of font-spec.
12569 (Finternal_char_font): Likewise.
12570 (Ffontset_info): Likewise.
12571 (syms_of_fontset): Don't check load_font_func.
12572
12573 * fns.c (internal_equal): Handle PREV_FONT.
12574
12575 * frame.h: Delete USE_FONT_BACKEND conditional.
12576
12577 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
12578 conditionals. Don't check enable_font_backend. Delete all codes
12579 used only when USE_FONT_BACKEND is not defined.
12580 (x_set_font): Call x_new_font, not x_new_fontset2.
12581 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
12582 already set for the frame.
12583
12584 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
12585 a font-entity by font_make_entity. Use font_intern_prop instead
12586 of intern_downcase. Use FONT_SET_STYLE to set a style-related
12587 font property. If a font is scalable, set avgwidth property to 0.
12588 Set font-entity property by font_put_extra.
12589 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
12590 (ffont_driver): Adjusted for the change of struct font_driver.
12591 (ftfont_spec_pattern): New function.
12592 (ftfont_list): Return a list, not vector.
12593 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
12594 (ftfont_list_family): Don't downcase names.
12595 (ftfont_free_entity): Deleted.
12596 (ftfont_open): Return a font-object. Adjusted for the change of
12597 struct font. Get underline_thickness and underline_position from
12598 font property. Don't update dpyinfo->smallest_font_height and
12599 dpyinfo->smallest_char_width.
12600 (ftfont_close): Don't free `struct font'.
12601 (ftfont_has_char): Adjusted for the format change of font-entity.
12602 (ftfont_encode_char, ftfont_text_extents): Likewise.
12603
12604 * ftxfont.c (ftxfont_list): Return a list, not vector.
12605 (ftxfont_open): Return a font-object. Adjusted for the change of
12606 struct font. Get underline_thickness and underline_position from
12607 font property. Don't update dpyinfo->smallest_font_height and
12608 dpyinfo->smallest_char_width.
12609 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
12610 (ftxfont_draw): Adjusted for the change of struct font.
12611
12612 * image.c (image_ascent): Don't include "charset.h". Include
12613 "character.h" and "font.h".
12614
12615 * lisp.h (enum pvec_type): New member PREV_FONT.
12616 (Fassoc_string): EXFUN it.
12617
12618 * print.c: Include font.h.
12619 (print_object): Handle font-related objects.
12620
12621 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
12622 conditionals. Don't check enable_font_backend. Delete all codes
12623 used only when USE_FONT_BACKEND is not defined.
12624 (handle_auto_composed_prop): Do nothing if it->f is not on a
12625 window system. Check how many following characters can be
12626 displayed by the same font.
12627 (calc_pixel_width_or_height): Type of the 4th arg is changed to
12628 'struct font *'.
12629 (get_char_face_and_encoding): Assign the whole encoding task to
12630 the `encode-char' method of a font driver.
12631 (fill_composite_glyph_string): Adjusted for the change of `struct
12632 face' and `struct glyph_string'.
12633 (fill_glyph_string): Likewise.
12634 (get_per_char_metric): Arguments changed.
12635 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
12636 and `struct glyph_string'.
12637 (produce_stretch_glyph, calc_line_height_property)
12638 (x_produce_glyphs): Likewise.
12639
12640 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
12641 conditionals. Don't check enable_font_backend. Delete all codes
12642 used only when USE_FONT_BACKEND is not defined. Use
12643 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
12644 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
12645 (Qp): Extern them.
12646 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
12647 Deleted.
12648 (struct font_name): Deleted.
12649 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
12650 (compare_fonts_by_sort_order): New function.
12651 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
12652 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
12653 Deleted.
12654 (Fx_family_fonts): Use font_list_entities, and sort fonts by
12655 compare_fonts_by_sort_order.
12656 (Fx_font_family_list): Call Ffont_family_list.
12657 (face_numeric_value, face_numeric_weight, face_numeric_slant)
12658 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
12659 (face_symbolic_slant, face_symbolic_swidth)
12660 (split_font_name_into_vector, build_font_name_from_vector)
12661 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
12662 (font_rescale_ratio, split_font_name, build_font_name)
12663 (free_font_names, sort_fonts, x_face_list_fonts)
12664 (face_font_available_p, sorted_font_list, cmp_font_names)
12665 (font_list_1, concat_font_list, font_list, remove_duplicates):
12666 Deleted.
12667 (Fx_list_fonts): Use Ffont_list.
12668 (LFACE_AVGWIDTH): Deleted.
12669 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
12670 by FONTP.
12671 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
12672 (set_lface_from_font_name): Delete it.
12673 (set_lface_from_font): Renamed from
12674 set_lface_from_font_and_fontset. Caller changed. Don't set
12675 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
12676 for face.
12677 (merge_face_vectors): Copy font-spec if necessary.
12678 Clear properties of the font-spec if necessary.
12679 (merge_face_ref): Clear properties of the font-spec if necessary.
12680 (Finternal_set_lisp_face_attribute): Likewise.
12681 (set_font_frame_param): Use font_load_for_lface to load a
12682 font-object, and call Fmodify_frame_parameters with it.
12683 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
12684 font name by Ffont_xlfd_name.
12685 (Finternal_lisp_face_attribute_values): Don't check QCweight,
12686 QCslant, and QCwidth.
12687 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
12688 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
12689 Compare fonts by EQ.
12690 (lookup_non_ascii_face): Deleted.
12691 (face_for_font): The 2nd argument changed.
12692 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
12693 Check atomic font properties by case insensitive.
12694 (realize_non_ascii_face): Set face->overstrike correctly.
12695 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
12696 (dump_realized_face): Get font name from
12697 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
12698
12699 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
12700 conditionals. Don't check enable_font_backend. Delete all codes
12701 used only when USE_FONT_BACKEND is not defined.
12702 (xic_create_xfontset): Original code deleted and renamed from
12703 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
12704 (x_make_gc): Don't set GCFont in GCs.
12705 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
12706 opened by "fixed".
12707 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
12708 find_ccl_program_func, query_font_func, set_frame_fontset_func,
12709 get_font_repertory_func.
12710
12711 * xfont.c: Include <stdlib.h> and "ccl.h".
12712 (struct xfont_info): New structure.
12713 (xfont_query_font): Deleted.
12714 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
12715 moved from xterm.c.
12716 (xfont_driver): Adjusted for the change of struct font_driver.
12717 (compare_font_names): New function.
12718 (xfont_list_pattern): Sort font names case insensitively. Make
12719 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
12720 (xfont_list): Return a list, not vector.
12721 (xfont_match): If the font doesn't have QCname property, generate
12722 a name from the other font properties.
12723 (xfont_open): Return a font-object. Adjusted for the change of
12724 struct font. Get underline_thickness and underline_position from
12725 font property. Don't update dpyinfo->smallest_font_height and
12726 dpyinfo->smallest_char_width.
12727 (xfont_close): Don't free struct font.
12728 (xfont_prepare_face): Adjusted for the change of struct font.
12729 (xfont_done_face): Deleted.
12730 (xfont_has_char): Adjusted for the change of struct font.
12731 (xfont_encode_char, xfont_draw): Likewise.
12732 (xfont_check): New function.
12733
12734 * xftfont.c (xftfont_list): Adjusted for the change of `list'
12735 callback function.
12736 (xftfont_match): Adjusted for the format change of font-entity.
12737 (xftfont_open): Adjusted for the format change of font-entity and
12738 font-object. Adjusted for the change of struct font. Return a
12739 font-object. Don't update dpyinfo->smallest_font_height and
12740 dpyinfo->smallest_char_width.
12741 (xftfont_close): Block input while calling XftFontClose.
12742 (xftfont_prepare_face): Don't block input while calling
12743 xftfont_get_colors. Adjusted for the change of struct font.
12744 (xftfont_shape): Return value of error case fixed.
12745
12746 * xrdb.c (x_load_resources): Don't setup a fontset resource.
12747
12748 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
12749 conditionals.
12750 (FONT_WIDTH): Return (f)->max_width.
12751 (struct x_display_info): Delete member `font'.
12752 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
12753 (x_find_ccl_program, x_get_font_repertory): Delete externs.
12754 (struct x_output): Change type of `font' to `struct font *'.
12755
12756 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
12757 conditionals. Don't check enable_font_backend. Delete all codes
12758 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
12759 (x_per_char_metric, x_encode_char): Deleted.
12760 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
12761 (x_compute_glyph_string_overhangs): Adjusted for the change of
12762 `struct face'.
12763 (x_draw_glyph_string_foreground)
12764 (x_draw_composite_glyph_string_foreground): Likewise.
12765 (x_draw_glyph_string): Likewise. Use font->underline_position and
12766 font->underline_thickness.
12767 (x_new_font): Renamed from x_new_fontset2.
12768 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
12769 (x_check_font): Call `check' method of a font driver.
12770 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
12771 (x_query_font, x_get_font_repertory): Deleted.
12772 (x_find_ccl_program): Renamed and moved to xfont.c.
12773 (x_redisplay_interface): Adjusted for the change of `struct
12774 redisplay_interface'.
12775
12776 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
12777 conditionals. Don't check enable_font_backend. Delete all codes
12778 used only when USE_FONT_BACKEND is not defined. Surround non-used
12779 code by "#ifdef OLD_FONT" and "endif".
12780 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
12781
12782 * w32font.h (struct w32font_info): New member.
12783 (FONT_COMPAT): New macro.
12784 (w32font_open_internal): Prototype adjusted.
12785
12786 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
12787 OLD_FONT" and "endif".
12788
12789 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
12790 conditionals. Don't check enable_font_backend. Delete all codes
12791 used only when USE_FONT_BACKEND is not defined.
12792 (w32font_open): Return a font-object. Make a font-object by
12793 font_make_object. Adjusted for the change of struct w32font_info.
12794 (w32font_close): Don't free struct font. Adjusted for the change
12795 of struct w32font_info.
12796 (w32font_encode_char, w32font_text_extents, w32font_draw):
12797 Adjusted for the change of struct w32font_info.
12798 (w32font_draw): Likewise.
12799 (w32font_list_internal): Return a list, not vector.
12800 (w32font_open_internal): Change the 4th arg to font-object.
12801 Adjusted for the change of struct w32font_info and font-object format.
12802 (add_font_name_to_list): Don't downcase names.
12803 (w32_enumfont_pattern_entity): Make a font-entity by
12804 font_make_entity. Adjusted for the format change of font-entity.
12805 Use FONT_SET_STYLE to set a style-related font property. If a
12806 font is scalable, set avgwidth property to 0. Set font-entity
12807 property by font_put_extra.
12808 (font_matches_spec): Adjusted for the format change of font-entity.
12809 (w32_weight_table, w32_decode_weight): New variables.
12810 (w32_encode_weight): New function.
12811 (fill_in_logfont): Adjusted for the format change of font-spec.
12812 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
12813 weight value.
12814 (w32font_driver): Adjusted for the change of struct font_driver.
12815
12816 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
12817 conditionals. Don't check enable_font_backend. Surround non-used
12818 code by "#ifdef OLD_FONT" and "endif".
12819 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
12820 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
12821
12822 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
12823 conditionals. Don't check enable_font_backend. Delete all codes
12824 used only when USE_FONT_BACKEND is not defined. Surround non-used
12825 code by "#ifdef OLD_FONT" and "endif".
12826
12827 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
12828 (uniscribe_open): Return value changed to font-object.
12829 Adjusted for the format change of font-object.
12830 (uniscribe_otf_capability): Adjusted for the change of struct font.
12831 (add_opentype_font_name_to_list): Don't downcase names.
12832 (uniscribe_font_driver): Adjusted for the change of struct
12833 font_driver.
12834
12835 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
12836
12837 * dispnew.c (update_frame_1): Check if tty output is still valid
12838 before flushing it.
12839
12840 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
12841
12842 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
12843 to Gtk+ menus.
12844
12845 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
12846
12847 * dired.c (file_name_completion): Tweak the code so as to always do it
12848 in a single pass. Tighten the scope of some variables.
12849
12850 * dired.c (Qdefault_directory): New var.
12851 (file_name_completion): Use it instead of Fexpand_file_name.
12852 (syms_of_dired): Initialize it.
12853
12854 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
12855
12856 * fileio.c (double_dollars): Remove dead code.
12857
12858 2008-05-10 Eli Zaretskii <eliz@gnu.org>
12859
12860 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
12861 Mention w32-get-true-file-attributes in doc string.
12862
12863 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
12864
12865 2008-05-09 Glenn Morris <rgm@gnu.org>
12866
12867 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
12868 2008-04-23.
12869
12870 2008-05-09 Eli Zaretskii <eliz@gnu.org>
12871
12872 Support for reporting owner and group of each file on MS-Windows:
12873 * dired.c (stat_uname, stat_gname): New functions, with special
12874 implementation for w32.
12875 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
12876
12877 * w32.c: Rename the_passwd_* to dflt_passwd_*.
12878 (dflt_group_name): New static variable.
12879 (dflt_group): Rename from the_group.
12880 (init_user_info): Init dflt_group fields. Get user's group name
12881 from LookupAccountSid.
12882 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
12883 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
12884 New initialization states.
12885 (globals_of_w32): Initialize them to zero. Initialize the default
12886 group name to "None".
12887 (GetFileSecurity_Name): New global var, the name of the function
12888 to call for GetFileSecurity.
12889 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
12890 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
12891 (get_file_security, get_security_descriptor_owner)
12892 (get_security_descriptor_group, is_valid_sid)
12893 (get_file_security_desc, get_rid, get_name_and_id)
12894 (get_file_owner_and_group): New functions.
12895 (stat): Use get_file_security_desc and get_file_owner_and_group to
12896 report the owner and primary group of each file. Don't ignore the
12897 high 32 bits of file's size, now that st_size is 64-bit wide.
12898 Fix test when to get true file attributes.
12899 (init_user_info): Use get_rid instead of equivalent inline code.
12900 (fstat): Don't ignore the high 32 bits of file's size.
12901
12902 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
12903
12904 * image.c (png_load): Use correct bit-depth for setting background
12905 color.
12906
12907 2008-05-08 Eli Zaretskii <eliz@gnu.org>
12908
12909 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
12910 epa-hook.elc.
12911
12912 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
12913
12914 * font.c (Ffont_match_p): Don't use `iff' in docstring.
12915
12916 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
12917
12918 * macfns.c (Fx_create_frame): Make a copy of frame parameters
12919 because the original parameters are in pure storage now.
12920 (mac_window): Remove unused params. Update callers.
12921
12922 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12923
12924 * lread.c (substitute_object_recurse): Use lower-level primitives.
12925 Don't signal errors when traversing sub-char-tables.
12926 Don't loop over all the possible characters when traversing char-tables.
12927
12928 * print.c (print_preprocess): Add sub-char-tables to the print-table,
12929 just like we do in print.c.
12930
12931 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
12932
12933 * minibuf.c (Ftry_completion): Remove code left over from when we used
12934 scmp instead of Fcompare_strings.
12935
12936 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
12937
12938 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
12939
12940 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12941
12942 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
12943 Create bitmap context in native byte order.
12944
12945 * macterm.c (XDrawLine)
12946 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
12947 context in native byte order.
12948
12949 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12950
12951 * config.in: Regenerate.
12952
12953 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
12954 New definitions for Image I/O support.
12955 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
12956 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
12957 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
12958 (mac_data_provider_release_data, image_load_image_io)
12959 [USE_MAC_IMAGE_IO]: New functions.
12960 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
12961 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
12962 (init_image_func_pointer) [MAC_OSX]: Remove function.
12963 (image_load_quartz2d) [MAC_OSX]: Check availability of
12964 CGImageCreateWithPNGDataProvider at compile time.
12965 Use lowercase `false' for boolean constant.
12966 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
12967 Use image_load_image_io.
12968 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
12969 Don't check MyCGImageCreateWithPNGDataProvider.
12970 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
12971 Don't call init_image_func_pointer.
12972
12973 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
12974
12975 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
12976 Make variable non-static.
12977 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
12978 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
12979
12980 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
12981 (RED_FROM_ULONG): Mask off higher bits.
12982 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
12983
12984 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
12985 Include AvailabilityMacros.h.
12986 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
12987 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
12988
12989 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
12990
12991 * chartab.c (Fset_char_table_range): If range is t, really set all
12992 chars to that value.
12993
12994 2008-05-03 Eli Zaretskii <eliz@gnu.org>
12995
12996 * dired.c (Ffile_attributes): Don't allow the device number become
12997 negative.
12998
12999 2008-05-02 Daiki Ueno <ueno@unixuser.org>
13000
13001 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
13002
13003 2008-05-02 Juri Linkov <juri@jurta.org>
13004
13005 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
13006 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
13007 DEFAULT argument as a list of default values in docstrings.
13008
13009 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
13010
13011 * puresize.h (BASE_PURESIZE): Increase to 1210000.
13012
13013 2008-05-01 Martin Rudalics <rudalics@gmx.at>
13014
13015 * dispnew.c (change_frame_size_1): Preserve small windows when
13016 shrinking frames by calling set_window_height|width with third
13017 arg 2.
13018
13019 * window.h (struct window): Replace field too_small_ok by field
13020 resize_proportionally.
13021
13022 * window.c (make_window): Initialize resize_proportionally.
13023 (enlarge_window): Temporarily set resize_proportionally to make
13024 sure that shrink_windows does scale the window proportionally.
13025 (shrink_windows): When window has resize_proportionally set try
13026 to shrink it proportionally by stealing from other windows.
13027 (struct saved_window, Fset_window_configuration)
13028 (compare_window_configurations): Handle resize_proportionally.
13029 (WINDOW_TOTAL_SIZE): New macro.
13030 (window_min_size, shrink_windows, size_window): Use it.
13031 (check_min_window_sizes): Remove. Invalid values of
13032 window-min-height|width are handled by window_min_size_2 now.
13033 (size_window, Fsplit_window, enlarge_window)
13034 (adjust_window_trailing_edge, grow_mini_window): Don't call
13035 check_min_window_sizes.
13036 (window_min_size_2, window_min_size_1, window_min_size):
13037 New argument safe_p for retrieving "safe" minimum sizes.
13038 (Fdisplay_buffer, Fsplit_window, enlarge_window)
13039 (adjust_window_trailing_edge, grow_mini_window):
13040 Adjust arguments of window_min_size... functions.
13041 (shrink_windows): Argument min_size removed. New argument
13042 safe_p allows shrinking windows to their safe minimum sizes.
13043 Calculate minimum size and decide whether a window shall be
13044 deleted for each window individually.
13045 (size_window): When nodelete_p equals 2, tell shrink_windows to
13046 delete windows only if their new minimum size is no more safe.
13047 (shrink_window_lowest_first): Call window_min_size_1 to make
13048 sure to preserve modeline of bottom-most window when resizing
13049 the minibuffer.
13050 (Fset_window_configuration, Fcurrent_window_configuration)
13051 (compare_window_configurations): Do not handle
13052 window-min-height|width any more.
13053 (syms_of_window): Clarify window-min-height|width doc-strings.
13054
13055 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
13056
13057 * dired.c (file_name_completion): Fix up the encoding/decoding issue
13058 some more. Copy some of the code from Ftry_completions.
13059 Remove special case code that dates back to initial revision when the
13060 slash was only added when necessary and that can't trigger nowadays.
13061
13062 2008-04-27 Kenichi Handa <handa@m17n.org>
13063
13064 * font.c (font_prop_validate): Signal `error' instead of `font'.
13065
13066 2008-04-29 Jason Rumney <jasonr@gnu.org>
13067
13068 * w32fns.c (Fw32_battery_status): New defun.
13069 (syms_of_w32fns): Defsubr it.
13070
13071 2008-04-28 Andreas Schwab <schwab@suse.de>
13072
13073 * dired.c (file_name_completion): Fix another mixing of encoded
13074 and decoded names.
13075
13076 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
13077
13078 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
13079
13080 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
13081
13082 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
13083
13084 2008-04-27 Andreas Schwab <schwab@suse.de>
13085
13086 * dired.c (file_name_completion): Fix inappropriate mixing of
13087 encoded and decoded names.
13088
13089 * xterm.c (XTread_socket): Fix use of uninitialized variable.
13090
13091 * puresize.h (BASE_PURESIZE): Increase to 1200000.
13092
13093 2008-04-26 Eli Zaretskii <eliz@gnu.org>
13094
13095 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
13096 2008-03-31, it's not needed anymore with `struct stat' definition
13097 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
13098 for the same reasons.
13099
13100 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
13101
13102 * m/sparc.h: Additional redefinitions for GNU/Linux.
13103
13104 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13105
13106 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
13107 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
13108 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
13109 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
13110 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
13111 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
13112 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
13113 Likewise.
13114
13115 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
13116 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
13117 (mac_ax_number_of_characters): Add externs.
13118 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
13119 [USE_MAC_TSM]: Likewise.
13120 (mac_handle_text_input_event) [MAC_OSX]:
13121 Handle kEventTextInputOffsetToPos for no active input area case.
13122 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
13123 (mac_handle_document_access_event)
13124 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
13125 (install_application_handler) [MAC_OSX]: Register handlers for
13126 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
13127 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
13128 Register mac_handle_document_access_event.
13129
13130 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
13131 Make functions non-static.
13132
13133 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
13134
13135 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
13136 (read_file_name_completion_ignore_case, insert_default_directory)
13137 (Qdefault_directory): Move to minibuffer.el.
13138 (Fread_file_name): Call the new `read-file-name' instead.
13139
13140 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13141
13142 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
13143 Make function non-static.
13144 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
13145 Remove function.
13146 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
13147 Move to mactoolbox.c.
13148 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
13149
13150 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
13151 (mac_rect_make): New macro.
13152
13153 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
13154 instead of float.
13155 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
13156 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
13157 (XSetBackground) [USE_CG_DRAWING]: Likewise.
13158 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
13159 CGRectMake.
13160 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
13161 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
13162 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
13163 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
13164 instead of WindowRef in argument type.
13165 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
13166 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
13167 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
13168 instead of DISPLAY. All uses changed.
13169 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
13170 (x_calc_absolute_position): Simplify so as not to use
13171 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
13172
13173 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
13174 instead of WindowRef in argument type.
13175 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
13176 [TARGET_API_MAC_CARBON]: Remove externs.
13177 (create_apple_event, mac_event_parameters_to_lisp)
13178 [TARGET_API_MAC_CARBON]: Add externs.
13179
13180 * mactoolbox.c (Vmac_ts_script_language_on_focus)
13181 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
13182 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
13183 is clicked.
13184 (x_activate_menubar): Remove extern for saved_menu_event_location.
13185 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
13186 Move from mac.c.
13187
13188 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13189
13190 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
13191 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
13192
13193 2008-04-23 Jason Rumney <jasonr@gnu.org>
13194
13195 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
13196 attributes only for local files.
13197
13198 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
13199 default to Qlocal.
13200
13201 2008-04-22 Juri Linkov <juri@jurta.org>
13202
13203 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
13204 read-buffer-to-switch instead of using the letter "B".
13205
13206 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
13207
13208 * fileio.c (Qdefault_directory): New variable.
13209 (Fread_file_name): Use it to pass `dir' to the completion functions.
13210
13211 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
13212
13213 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
13214
13215 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
13216
13217 * keyboard.c (Vpre_help_message): Remove.
13218 (show_help_echo): Remove default C code.
13219
13220 * dired.c (directory_files_internal, file_name_completion):
13221 Only call ENCODE_FILE if the string is indeed decoded.
13222
13223 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
13224
13225 * Makefile.in (TOOLKIT_DEFINES): Remove.
13226 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
13227
13228 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13229
13230 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
13231 (mactoolbox.o): New target.
13232
13233 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
13234 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
13235
13236 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
13237 Use mac_set_frame_window_background instead of XSetWindowBackground.
13238 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
13239 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
13240 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
13241 instead of SetWindowTitleWithCFString.
13242 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
13243 Move function to mactoolbox.c.
13244 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
13245 Use mac_set_window_modified instead of SetWindowModified.
13246 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
13247 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
13248 (Fx_focus_frame): Use mac_front_non_floating_window instead of
13249 FrontNonFloatingWindow. Use mac_activate_window instead of
13250 ActivateWindow. Use mac_active_non_floating_window instead of
13251 ActiveNonFloatingWindow.
13252 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
13253 Use mac_show_hourglass and mac_hide_hourglass.
13254 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
13255 instead of GetGlobalMouse.
13256 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
13257 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
13258 Use mac_bring_window_to_front instead of BringToFront.
13259 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
13260 mactoolbox.c.
13261 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
13262 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
13263 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
13264 mactoolbox.c.
13265
13266 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
13267 (XtPointer): Move typedef from macmenu.c.
13268 (enum button_type): Move enum from macmenu.c.
13269 (widget_value): Move typedef from macmenu.c.
13270 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
13271 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
13272 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
13273 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
13274 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
13275 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
13276 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
13277 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
13278 (Selection): Move typedef from macselect.c.
13279 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
13280 macterm.c.
13281 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
13282 (mac_is_window_collapsed, mac_bring_window_to_front)
13283 (mac_send_window_behind, mac_hide_window, mac_show_window)
13284 (mac_collapse_window, mac_front_non_floating_window)
13285 (mac_active_non_floating_window, mac_activate_window)
13286 (mac_move_window_structure, mac_move_window, mac_size_window)
13287 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
13288
13289 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
13290 (enum mac_menu_kind): Move enum to mactoolbox.c.
13291 (min_menu_id): Move variable to mactoolbox.c.
13292 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
13293 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
13294 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
13295 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
13296 [TARGET_API_MAC_CARBON]: Likewise.
13297 (XtPointer): Move typedef to macgui.h.
13298 (enum button_type): Move enum to macgui.h.
13299 (widget_value): Move typedef to macgui.h.
13300 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
13301 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
13302 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
13303 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
13304 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
13305 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
13306 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
13307 (popup_activated_flag): Make variable non-static.
13308 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
13309 (add_menu_item, fill_menu, dispose_menus):
13310 Move functions to mactoolbox.c.
13311 (restore_show_help_function, menu_target_item_handler)
13312 (install_menu_target_item_handler, mac_handle_dialog_event)
13313 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
13314 [TARGET_API_MAC_CARBON]: Likewise.
13315 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
13316 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
13317 (find_and_call_menu_selection, name_is_separator): Make function
13318 non-static.
13319 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
13320 to mactoolbox.c.
13321 (set_frame_menubar): Don't call install_menu_quit_handler.
13322 (menu_item_selection): New variable.
13323 (mac_menu_show): Use create_and_show_popup_menu.
13324 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
13325 selection but set variable menu_item_selection. All uses changed.
13326 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
13327 Call install_menu_quit_handler. Move to mactoolbox.c.
13328
13329 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
13330 (Selection): Move typedef to macgui.h.
13331 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
13332 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
13333 Make variables non-static.
13334 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
13335 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
13336 Make functions non-static.
13337 (Vmac_service_selection) [MAC_OSX]: Likewise.
13338 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
13339 (mac_valid_selection_target_p, mac_clear_selection)
13340 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
13341 (mac_put_selection_value, mac_selection_has_target_p)
13342 (mac_get_selection_value, mac_get_selection_target_list)
13343 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
13344 Move functions to mactoolbox.c.
13345 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
13346 Likewise.
13347 (copy_scrap_flavor_data, mac_handle_service_event)
13348 (install_service_handler) [MAC_OSX]: Likewise.
13349 (syms_of_macselect) <Vmac_dnd_known_types>:
13350 Use mac_dnd_default_known_types.
13351
13352 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
13353 Move to mactoolbox.c.
13354 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
13355 (Fx_selection_owner_p): Add EXFUN.
13356 (install_window_handler, remove_window_handler, XSetWindowBackground):
13357 Remove externs.
13358 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
13359 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
13360 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
13361 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
13362 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
13363 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
13364 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
13365 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
13366 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
13367 (create_and_show_popup_menu, mac_get_selection_from_symbol)
13368 (mac_valid_selection_target_p, mac_clear_selection)
13369 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
13370 (mac_put_selection_value, mac_selection_has_target_p)
13371 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
13372 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
13373 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
13374 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
13375 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
13376 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
13377 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
13378 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
13379 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
13380
13381 * mactoolbox.c: New file.
13382
13383 2008-04-18 Jason Rumney <jasonr@gnu.org>
13384
13385 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
13386
13387 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
13388
13389 * character.c (Fmultibyte_char_to_unibyte):
13390 Return latin1 chars unchanged.
13391
13392 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
13393 relocated if it points to `name'.
13394
13395 2008-04-17 Kenichi Handa <handa@m17n.org>
13396
13397 * data.c (Faset): Allow setting a multibyte character in an
13398 ASCII-only unibyte string.
13399
13400 * lisp.h (STRING_SET_MULTIBYTE): New macro.
13401
13402 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
13403
13404 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
13405 done in config.h.
13406
13407 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
13408
13409 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
13410 (Fchar_direction): Add usage in the docstring.
13411
13412 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
13413
13414 * keyboard.c (read_key_sequence): Remove always-true checks.
13415
13416 2008-04-14 Jason Rumney <jasonr@gnu.org>
13417
13418 * w32font.c (w32font_open_internal): Set max_bounds.descent in
13419 compatibility struct, for better underline positioning.
13420
13421 2008-04-13 David Hansen <david.hansen@gmx.net>
13422
13423 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
13424 string.
13425
13426 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
13427
13428 * m/hp800.h (XUINT, XSET): Remove.
13429
13430 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
13431
13432 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
13433 previous change.
13434
13435 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
13436
13437 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
13438 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
13439
13440 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13441
13442 * keymap.h (map_keymap_canonical): Declare.
13443 * xmenu.c (single_keymap_panes): Use it.
13444
13445 2008-04-11 Glenn Morris <rgm@gnu.org>
13446
13447 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
13448 set the target's value to that of the alias.
13449
13450 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13451
13452 * term.c (set_tty_color_mode): Left over typo.
13453
13454 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
13455
13456 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
13457 only after check for file name handler functions. Signal, when
13458 native functionality is not supported.
13459 (syms_of_fileio): Declare it unconditionally.
13460
13461 2008-04-10 Jason Rumney <jasonr@gnu.org>
13462
13463 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
13464 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
13465
13466 * w32.c (logon_network_drive): Also logon to remote drives that
13467 are mapped to drive letters.
13468
13469 2008-04-10 Glenn Morris <rgm@gnu.org>
13470
13471 * xdisp.c (truncate-partial-width-windows): Doc fix.
13472
13473 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
13474
13475 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
13476 Move functions to minibuffer.el.
13477 (syms_of_fileio): Don't declare them.
13478
13479 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
13480
13481 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
13482 (syms_of_minibuf): Remove its initialization.
13483
13484 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
13485
13486 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
13487
13488 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
13489
13490 2008-04-09 Jason Rumney <jasonr@gnu.org>
13491
13492 * makefile.w32-in (distclean): Delete makefile too.
13493 (maintainer-clean): New target.
13494
13495 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
13496
13497 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
13498 for new font backend and composite cases.
13499
13500 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
13501
13502 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
13503 Most of the code moved to run_timers.
13504 (do_pending_atimers): Call run_timers.
13505 (run_timers): New function.
13506
13507 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
13508 run atimers.
13509
13510 * process.c (wait_reading_process_output): The same as above.
13511
13512 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
13513
13514 * minibuf.c (last_exact_completion): Remove variable.
13515 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
13516 (complete_and_exit_1, complete_and_exit_2)
13517 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
13518 (Fdisplay_completion_list, display_completion_list_1)
13519 (Fminibuffer_completion_help, Fself_insert_and_exit)
13520 (Fexit_minibuffer, Fminibuffer_message): Move functions to
13521 minibuffer.el.
13522 (syms_of_minibuf): Remove corresponding initializations.
13523
13524 * keyboard.c (Qdeactivate_mark): New var.
13525 (command_loop_1): Use it to call `deactivate-mark'.
13526 (syms_of_keyboard): Initialize it.
13527
13528 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
13529 to another frame.
13530 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
13531 Don't call set_tty_color_mode.
13532 (store_frame_param): Reset previous_frame rather than call
13533 set_tty_color_mode.
13534 * term.c (set_tty_color_mode): Rewrite.
13535 * dispextern.h (set_tty_color_mode): New type.
13536 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
13537
13538 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
13539
13540 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
13541 for generic chars, which do not exist any more in emacs-unicode.
13542
13543 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
13544
13545 * coding.c (detect_coding_emacs_mule)
13546 (Ffind_operation_coding_system): Fix typo.
13547
13548 2008-04-08 Jason Rumney <jasonr@gnu.org>
13549
13550 * w32uniscribe.c (SNAME): Extract only symbol name.
13551
13552 * w32font.h (struct w32_metric_cache): New struct.
13553 (w32font_info): Use it.
13554 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
13555 (CACHE_BLOCKSIZE): New constants.
13556
13557 * w32font.c (Qja, Qko, Qzh): New symbols.
13558 (syms_of_w32font): Initialise them.
13559 (font_matches_spec): Use them to filter by language.
13560 (recompute_cached_metrics): Remove function.
13561 (compute_metrics, clear_cached_metrics): New functions.
13562 (w32font_encode_char): Use them to manage metric cache.
13563 (w32font_text_extents): Cache metrics for all glyphs on demand.
13564 Delay converting glyph indices to WORD until needed.
13565 (w32font_open_internal): Initialize metric cache to empty.
13566 (registry_to_w32_charset): Charset should always be a symbol.
13567 (fill_in_logfont, list_all_matching_fonts): Family should
13568 always be a symbol.
13569
13570 2008-04-06 Jason Rumney <jasonr@gnu.org>
13571
13572 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
13573 Give up if glyph indices not supported. Use uniscribe obtained
13574 ABC widths for individual metrics. Map glyph clusters back to
13575 characters using fClusterStart flag. Return number of glyphs
13576 produced, not chars processed.
13577 (uniscribe_shape): Map char at FROM to current glyph.
13578
13579 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13580
13581 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
13582 Use SetMenuItemHierarchicalMenu.
13583
13584 2008-04-05 Jason Rumney <jasonr@gnu.org>
13585
13586 * image.c (pbm_load): Allow color values up to 65535.
13587 Throw an error if max_color_idx is outside the supported range.
13588 Report an error when image size is invalid.
13589 Read two bytes at a time when raw images have max_color_idx above 255.
13590
13591 2008-04-05 Eli Zaretskii <eliz@gnu.org>
13592
13593 * w32.c (readdir): If FindFirstFile/FindNextFile return in
13594 cFileName a file name that includes `?' characters, use the 8+3
13595 alias in cAlternateFileName instead.
13596
13597 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
13598
13599 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
13600 append "CCL: Quitted" when the CCL program is quitted.
13601 (setup_ccl_program): Initialize ccl->quit_silently to zero.
13602
13603 * ccl.h (struct ccl_program): New member quit_silently.
13604
13605 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
13606
13607 * search.c (compile_pattern_1): Treat non-nil and non-string of
13608 search-spaces-regexp as nil.
13609
13610 * minibuf.c (Fassoc_string): Tweak docstring.
13611
13612 2008-04-05 Eli Zaretskii <eliz@gnu.org>
13613
13614 * dired.c (Ffile_attributes): Support inode numbers wider than 32
13615 bits. Remove ugly WINDOWSNT-specific kludge introduced on
13616 2008-03-14 to force inode be positive.
13617
13618 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
13619 _S_* ones, since we now use our own sys/stat.h.
13620 (stat, fstat): Don't mangle the inode number.
13621 (init_user_info): Don't restrict UID and GID to 0-60000 range.
13622
13623 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
13624
13625 * frame.h (struct frame): Give one more bit to `visible' since we use
13626 values larger than 1 to indicate obscured frames on ttys.
13627
13628 * keymap.c (Qkeymap_canonicalize): New var.
13629 (Fmap_keymap_internal): New fun.
13630 (describe_map): Use keymap-canonicalize.
13631
13632 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
13633 (Fundo_boundary): Set them.
13634 (syms_of_undo): Initialize them.
13635 (record_point): Use them instead of last_point_position*.
13636 (last_undo_buffer): Change type.
13637
13638 2008-04-04 Jason Rumney <jasonr@gnu.org>
13639
13640 * w32font.c (w32font_text_extents): Use font's ascent and descent.
13641 (recompute_cached_metrics): Don't set ascent and descent per char.
13642
13643 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
13644 (uniscribe_check_otf): Add GC protection before consing.
13645 Rearrange loop for counting features.
13646
13647 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
13648
13649 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
13650 buffer with byte-size of source buffer.
13651
13652 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
13653
13654 * callint.c (Fcall_interactively): Handle temporary region even
13655 when shift-select-mode is off.
13656
13657 2008-04-03 Jason Rumney <jasonr@gnu.org>
13658
13659 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
13660
13661 2008-04-03 Kenichi Handa <handa@m17n.org>
13662
13663 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
13664 (CATEGORY_MASK_UTF_16): Likewise.
13665 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
13666 binary file.
13667 (detect_coding): Add null-byte detection for a binary file.
13668 (detect_coding_system): Likewise.
13669
13670 2008-04-03 Jason Rumney <jasonr@gnu.org>
13671
13672 * w32uniscribe.c: New file.
13673
13674 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
13675
13676 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
13677
13678 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
13679 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
13680 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
13681 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
13682 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
13683 (Qphonetic): New symbols.
13684 (syms_of_w32font): Initialize them.
13685 (font_supported_scripts): Use them.
13686 (w32font_list_family): List all charsets.
13687 (w32font_text_extents, recompute_cached_metrics): Fix metric
13688 calculations.
13689 (w32_enumfont_pattern_entity): Make full_type a DWORD.
13690 Give opentype fonts their own format.
13691 (font_matches_spec): New arguments backend and logfont.
13692 Handle :otf spec for uniscribe backend.
13693 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
13694 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
13695
13696 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
13697 font backend.
13698 (globals_of_w32fns): Initialize uniscribe font backend.
13699
13700 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
13701 dependencies.
13702 (w32uniscribe.$(O)): New file to build.
13703 (FONT_OBJ): Include w32uniscribe.$(O).
13704 (LIBS): Add uniscribe libraries.
13705
13706 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
13707
13708 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
13709
13710 * callint.c (Vshift_select_mode): New var.
13711 (Finteractive): Document new ^ spec.
13712 (Fcall_interactively): Call handle-shift-selection if the ^ spec
13713 is present.
13714
13715 * keyboard.c (Vthis_command_keys_shift_translated): New var.
13716 (command_loop_1): Avoid running the direct display versions of
13717 forward-char and backward-char if shift-selection may occur.
13718 (read_key_sequence): Set Vthis_command_keys_shift_translated if
13719 shift-translation takes place.
13720
13721 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
13722 avoid clobbering by define-minor-mode.
13723
13724 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
13725 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
13726
13727 * syntax.c (Fforward_word): Add ^ interactive spec.
13728
13729 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
13730 (Fscroll_right): Add ^ interactive spec.
13731
13732 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
13733
13734 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
13735
13736 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
13737
13738 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
13739
13740 2008-03-31 Juri Linkov <juri@jurta.org>
13741
13742 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
13743
13744 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
13745
13746 * gtkutil.c (xg_set_geometry): Fix indentation.
13747 (xg_resize_outer_widget): Remove.
13748 (x_wm_size_hint_off): Fix indentation.
13749 (xg_frame_set_char_size): Call flush_and_sync after
13750 gtk_window_resize.
13751 (x_wm_set_size_hint): Pass NULL as geometry window to
13752 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
13753 Add menu bar and tool bar height to base height.
13754 (xg_update_frame_menubar, free_frame_menubar)
13755 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
13756 (update_frame_tool_bar, free_frame_tool_bar):
13757 Change xg_resize_outer_widget to xg_frame_set_char_size.
13758
13759 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
13760
13761 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
13762 (Fdbus_call_method): New parameter TIMEOUT.
13763 (dbus-send-signal): Optimize UNGCPRO call.
13764
13765 2008-03-29 Juri Linkov <juri@jurta.org>
13766
13767 * window.c (Fdisplay_buffer): Move call to
13768 Vsplit_window_preferred_function out of conditions that check
13769 if window is eligible for vertical splitting.
13770 When Vsplit_window_preferred_function is non-nil, call it and use
13771 its non-nil return value as window. Otherwise, continue doing
13772 vertical splitting using Fsplit_window with arg horflag=nil.
13773 (syms_of_window) <Vsplit_window_preferred_function>: Change the
13774 default value from `split-window' to nil.
13775
13776 2008-03-29 Juri Linkov <juri@jurta.org>
13777
13778 * callint.c (Fcall_interactively): Revert 2008-03-16 change
13779 for interactive code letters 'b' and 'B'.
13780
13781 2008-03-29 Eli Zaretskii <eliz@gnu.org>
13782
13783 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
13784 multibyte string.
13785
13786 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
13787
13788 * keyboard.c (pending_funcalls): New var.
13789 (timer_check): Run it.
13790 (syms_of_keyboard): Initialize it.
13791 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
13792 (Vdelete_terminal_functions): New vars.
13793 (syms_of_terminal): Initialize them.
13794 (Fdelete_terminal): Run delete-terminal-functions.
13795 * xdisp.c (safe_eval): Rewrite.
13796 (safe_call2): New fun.
13797 * frame.c (Qdelete_frame_functions): New var.
13798 (syms_of_frame): Initialize it.
13799 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
13800 * lisp.h (safe_call2, pending_funcalls): Declare.
13801
13802 2008-03-28 Andreas Schwab <schwab@suse.de>
13803
13804 * indent.c (Fmove_to_column): Move declaration before statements.
13805
13806 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
13807
13808 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
13809 (struct frame): Use bit fields for boolean vars.
13810
13811 * process.c (server_accept_connection): Simplify naming.
13812 (emacs_get_tty_pgrp): Use SDATA.
13813
13814 * coding.c (decode_coding_object): Fix last change.
13815
13816 2008-03-27 Jason Rumney <jasonr@gnu.org>
13817
13818 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
13819
13820 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
13821
13822 * charset.c (Fdefine_charset_internal): Change the way of
13823 registering charsets in Vcharset_order_list.
13824 (syms_of_charset): Make the charset `eight-bit' supplementary.
13825
13826 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
13827
13828 * regex.c (EXTEND_BUFFER): Change order of pointer addition
13829 operations, to avoid having the difference between pointers
13830 overflow.
13831
13832 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
13833
13834 * indent.c (check_display_width): New fun.
13835 (scan_for_column): Use it.
13836
13837 * data.c (syms_of_data): Mark most-positive-fixnum and
13838 most-negative-fixnum as constants.
13839
13840 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
13841
13842 * indent.c (scan_for_column): Extract from current_column_1.
13843 Merge with the same code from Fmove_to_column.
13844 (current_column_1, Fmove_to_column): Use it.
13845
13846 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
13847
13848 * keymap.c (map_keymap_internal): New fun.
13849 (map_keymap): Use it.
13850 (Fmap_keymap_internal): New fun.
13851 (Fmap_keymap): Remove left-out test from before make_save_value.
13852
13853 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
13854
13855 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
13856 Use XCAR/XCDR.
13857
13858 * process.h (struct Lisp_Process): Remove filter_multibyte.
13859 * process.c (QCfilter_multibyte): Remove.
13860 (setup_process_coding_systems): Don't use filter_multibyte.
13861 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
13862 (read_process_output): Don't adjust multibyteness to filter_multibyte.
13863 (Fset_process_filter_multibyte): Change the coding-system to
13864 approximate the previous behavior.
13865 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
13866 coding-system.
13867
13868 * coding.c (decode_coding_object): When not decoding into a buffer,
13869 obey the coding system's preference of (uni|multi)byte.
13870
13871 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
13872
13873 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
13874 every char is changed and has a different byte-length.
13875 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
13876 Fix int -> EMACS_INT.
13877
13878 2008-03-23 David Hansen <david.hansen@gmx.net>
13879
13880 * dbusbind.c (xd_read_message): Remove extra copying of message
13881 strings. Check for NULL `interface' or `member'.
13882
13883 2008-03-22 Eli Zaretskii <eliz@gnu.org>
13884
13885 * w32.c (readdir): If FindFirstFile/FindNextFile return in
13886 cFileName a file name that includes `?' characters, use the 8+3
13887 alias in cAlternateFileName instead.
13888
13889 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
13890
13891 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
13892
13893 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
13894
13895 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
13896 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
13897 work on current_buffer only instead (that was already the case
13898 for some of the code anyway).
13899 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
13900 (temp_set_point, temp_set_point_both): Use EMACS_INT.
13901 (SET_PT, SET_PT_BOTH): Adjust.
13902 * intervals.h (set_point, temp_set_point, set_point_both)
13903 (temp_set_point_both): Remove redundant declarations.
13904
13905 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
13906
13907 * fileio.c (Finsert_file_contents):
13908 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
13909 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
13910 when buffer != current_buffer anyway.
13911
13912 2008-03-20 Andreas Schwab <schwab@suse.de>
13913
13914 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
13915 as default.
13916
13917 2008-03-19 Jason Rumney <jasonr@gnu.org>
13918
13919 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
13920 (syms_of_w32fns): Initialize them.
13921 (HOURGLASS_ID): New constant.
13922 (x_window_to_frame): Don't check hourglass_window.
13923 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
13924 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
13925 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
13926 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
13927 Only change the cursor if hourglass is not active.
13928 (Fx_create_frame): Initialize frame's current_cursor.
13929 (hourglass_atimer): Remove.
13930 (hourglass_started): New function.
13931 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
13932 (show_hourglass): Adapt to w32, changing argument to frame.
13933
13934 * w32term.h (struct w32_output): Remove hourglass_window.
13935 Add current_cursor.
13936
13937 * eval.c (call_debugger, Fsignal):
13938 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
13939 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
13940 (Fexecute_extended_command, cancel_hourglass_unwind):
13941 * minibuf.c (read_minibuf):
13942 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
13943
13944 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
13945
13946 * window.c (run_funs): New fun.
13947 (run_window_configuration_change_hook): Use it to run the buffer-local
13948 and the global part of the hook.
13949
13950 * xdisp.c (format_mode_line_unwind_data): Add window argument.
13951 (unwind_format_mode_line): Restore selected window.
13952 (x_consider_frame_title, Fformat_mode_line): Set selected window.
13953
13954 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
13955
13956 * editfns.c (Fchar_equal): Check they are valid characters.
13957
13958 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
13959
13960 2008-03-17 Andreas Schwab <schwab@suse.de>
13961
13962 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
13963 against a charset.
13964
13965 * lisp.h (Fbuffer_list): Declare.
13966
13967 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
13968
13969 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
13970 handlebox_widget is != 0.
13971
13972 2008-03-16 Juri Linkov <juri@jurta.org>
13973
13974 * callint.c (Fcall_interactively): For interactive code letters
13975 'b' and 'B' put the buffer list into the list of default "future"
13976 values of the minibuffer.
13977
13978 2008-03-16 Andreas Schwab <schwab@suse.de>
13979
13980 * keyboard.c (read_key_sequence): Fix downcasing of letters with
13981 modifiers.
13982
13983 * regex.c (re_match_2_internal): Correct matching of a charset
13984 against latin-1 characters.
13985
13986 2008-03-16 Kenichi Handa <handa@m17n.org>
13987
13988 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
13989 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
13990 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
13991 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
13992 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
13993 CHAR_STRING_ADVANCE.
13994 (produce_chars): Fix for the case that the source and the
13995 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
13996 instead of CHAR_STRING_ADVANCE.
13997 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
13998 STRING_CHAR_ADVANCE.
13999
14000 2008-03-15 Andreas Schwab <schwab@suse.de>
14001
14002 * regex.c (re_match_2_internal): Correct matching of eight bit
14003 characters in unibyte strings.
14004
14005 2008-03-15 Martin Rudalics <rudalics@gmx.at>
14006
14007 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
14008 at end of range when it coincides with the end of the buffer.
14009
14010 2008-03-14 Eli Zaretskii <eliz@gnu.org>
14011
14012 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
14013
14014 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
14015
14016 2008-03-14 Jason Rumney <jasonr@gnu.org>
14017
14018 * editfns.c (initial_tz): New variable.
14019 (syms_of_editfns): Initialize it.
14020 (Fset_time_zone_rule): Set it when first called.
14021 Use it when TZSTRING is nil.
14022
14023 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
14024 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
14025 (monitor_from_point_fn, get_monitor_info_fn): New globals.
14026 (globals_of_w32fns): Initialize them.
14027 (compute_tip_xy): Use them to position tooltips.
14028
14029 2008-03-14 Glenn Morris <rgm@gnu.org>
14030
14031 * emacs.c (main): Revert previous change.
14032 (standard_args): Revert -internal-script back to -scriptload,
14033 and remove the long-option form.
14034
14035 2008-03-13 Glenn Morris <rgm@gnu.org>
14036
14037 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
14038 Remove option -enable-font-backend.
14039
14040 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14041
14042 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
14043
14044 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
14045
14046 * xterm.c (x_connection_closed): For GTK: If this is the last
14047 terminal just exit without closing the display.
14048
14049 2008-03-11 Jason Rumney <jasonr@gnu.org>
14050
14051 * w32font.c (w32font_full_name): Use floor to round.
14052
14053 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
14054
14055 * sound.c (alsa_configure): Declare vol at beginning of block.
14056
14057 * fontset.c (Ffontset_info): Remove extra semicolon.
14058
14059 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
14060
14061 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
14062 size of resulting string.
14063
14064 2008-03-10 Jason Rumney <jasonr@gnu.org>
14065
14066 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
14067
14068 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14069
14070 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
14071 Don't pretend as if characters with display property haven't been
14072 consumed for string-replacing-string case.
14073
14074 2008-03-08 Kim F. Storm <storm@cua.dk>
14075
14076 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
14077 (get_next_display_element, next_element_from_string)
14078 (next_element_from_ellipsis, next_element_from_buffer): Use it.
14079
14080 2008-03-08 Andreas Schwab <schwab@suse.de>
14081
14082 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
14083
14084 2008-03-06 Jason Rumney <jasonr@gnu.org>
14085
14086 * w32font.c (w32_registry): Take font_type argument. Use ANSI
14087 when charset not specified. Only translate ANSI to unicode when
14088 font_type is truetype.
14089 (w32font_coverage_ok): New function.
14090 (add_font_entity_to_list): Use it to filter unsuitable fonts.
14091
14092 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
14093
14094 * lread.c (Fread_char): Resolve modifiers.
14095 (Fread_char_exclusive): Likewise.
14096
14097 * character.c (char_resolve_modifier_mask): New function.
14098 (char_string): Use char_resolve_modifier_mask.
14099 (Fchar_resolve_modifiers): New function.
14100 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
14101 function.
14102
14103 2008-03-04 Jason Rumney <jasonr@gnu.org>
14104
14105 * makefile.w32-in: Always include w32font.c in the build.
14106 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
14107
14108 2008-03-04 Andreas Schwab <schwab@suse.de>
14109
14110 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
14111 (versionclean): Likewise.
14112
14113 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
14114
14115 * .cvsignore: Add oo.
14116
14117 2008-03-03 Andreas Schwab <schwab@suse.de>
14118
14119 * coding.c (decode_coding_object): Inhibit gap shrinking while
14120 decoding in place.
14121
14122 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
14123
14124 * w32term.c: Remove unused include "gnu.h".
14125 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
14126
14127 * gnu.h: Rename to ...
14128 * emacs-icon.h: ... this.
14129 * xterm.c: Use emacs-icon.h instead of gnu.h.
14130 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
14131
14132 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
14133
14134 * w32font.c: Include math.h.
14135
14136 2008-03-03 Jason Rumney <jasonr@gnu.org>
14137
14138 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
14139 Compute options separately.
14140 (w32font_open_internal): Set glyph_idx before caching metrics.
14141
14142 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
14143 Define if system headers don't.
14144 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
14145 (w32font_encode_char): Don't declare here.
14146
14147 * w32font.c (Quniscribe, QCformat): New symbols.
14148 (syms_of_w32font): Define them.
14149 (w32font_has_char): Indicate uncertainty.
14150 (w32font_encode_char): Encode as glyph point. Make static.
14151 (recompute_cached_metrics): New function.
14152 (w32font_open_internal): Use it. Set font to use glyph points
14153 initially. Set format based on type of font.
14154 (w32font_text_extents, w32font_draw): Optionally use glyph points.
14155 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
14156 on it. Set format based on information available here.
14157 (add_font_entity_to_list): Identify backend based on opentype_only.
14158
14159 2008-03-02 Andreas Schwab <schwab@suse.de>
14160
14161 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
14162
14163 * coding.c (decode_coding_big5, produce_chars):
14164 Fix typos in last change.
14165
14166 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
14167
14168 * gnu.h: New icon.
14169
14170 2008-03-02 Kenichi Handa <handa@m17n.org>
14171
14172 * coding.c (decode_coding_utf_8): When eol-type of CODING is
14173 `dos', don't decode '\r' if that is the last in the source.
14174 (decode_coding_utf_16, decode_coding_emacs_mule)
14175 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
14176 (decode_coding_raw_text, decode_coding_charset): Likewise.
14177 (produce_chars): Don't decode EOL here. Use EMACS_INT.
14178
14179 2008-03-01 Jason Rumney <jasonr@gnu.org>
14180
14181 * w32font.c (w32font_full_name): Report point size for scalable fonts.
14182
14183 2008-03-01 Kim F. Storm <storm@cua.dk>
14184
14185 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
14186
14187 2008-03-01 Jason Rumney <jasonr@gnu.org>
14188
14189 * w32font.c (w32font_full_name): New function.
14190 (w32font_open_internal): Use it.
14191
14192 2008-03-01 Kim F. Storm <storm@cua.dk>
14193
14194 * dispnew.c (line_draw_cost): Fix invalid glyph check.
14195
14196 2008-03-01 Jason Rumney <jasonr@gnu.org>
14197
14198 * font.c (font_unparse_fcname): Increase len when style is a symbol.
14199
14200 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
14201
14202 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
14203 xg_frame_resized when the event is for the edit widget.
14204
14205 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
14206
14207 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
14208 set_char_size.
14209 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
14210 operations on widgets here. Just set frame size if needed.
14211 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
14212 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
14213 (x_wm_set_size_hint): Set size hints on the edit widget only, not
14214 the whole frame.
14215 (xg_create_tool_bar): Move attachment of the tool bar to
14216 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
14217 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
14218
14219 2008-03-01 Jason Rumney <jasonr@gnu.org>
14220
14221 * w32fns.c (w32_msg_pump): Disable debug code.
14222
14223 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14224
14225 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
14226
14227 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
14228
14229 * xdisp.c (next_overlay_string): Don't set
14230 overlay_strings_at_end_processed_p if we're currently reading from
14231 a display string.
14232
14233 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
14234
14235 * xdisp.c (get_overlay_strings_1): Fix typo.
14236
14237 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
14238
14239 * xdisp.c (get_overlay_strings_1): Add missing argument type.
14240
14241 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
14242
14243 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
14244
14245 * xdisp.c (display_mode_element): Cancel the previous change.
14246 (decode_mode_spec): Likewise.
14247 (handle_auto_composed_prop): Don't make composition if it->string
14248 is a string.
14249
14250 2008-02-27 Kim F. Storm <storm@cua.dk>
14251
14252 * lisp.h (GLYPH): Change type from int to struct with separate char
14253 and face_id members.
14254 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
14255 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
14256 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
14257 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
14258 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
14259 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
14260 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
14261 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
14262 handle new Lisp glyph code encoding, either an integer or a cons.
14263
14264 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
14265 (GLYPH_ALIAS): Delete.
14266 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
14267 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
14268 (GLYPH_FROM_CHAR): Replace macro by ...
14269 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
14270
14271 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
14272 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
14273 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
14274 (GLYPH_INVALID_P): New macro.
14275 (spec_glyph_lookup_face): Update prototype.
14276
14277 * dispnew.c (line_draw_cost): Adapt to new glyph type.
14278 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
14279 new glyph code encoding.
14280 (spec_glyph_lookup_face): No return value; update passed glyph instead.
14281 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
14282
14283 * xdisp.c (get_next_display_element, next_element_from_display_vector):
14284 Adapt to new glyph type and new glyph code encoding.
14285
14286 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
14287
14288 * indent.c (current_column, current_column_1, Fmove_to_column)
14289 (compute_motion): Adapt to new glyph code encoding.
14290
14291 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
14292
14293 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
14294
14295 * process.c (wait_reading_process_output): Check for window
14296 changes caused by timers.
14297 Suggested by Johan Bockgård.
14298
14299 2008-02-27 Glenn Morris <rgm@gnu.org>
14300
14301 * emacs.c (USAGE1): Add `--disable-font-backend'.
14302
14303 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
14304
14305 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
14306 is made to the buffer.
14307
14308 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
14309
14310 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
14311 (face_at_string_position):
14312 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
14313 (face_at_string_position):
14314 * xdisp.c (display_string, next_overlay_change):
14315 * buffer.h (overlays_at):
14316 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
14317 Update callers.
14318
14319 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
14320
14321 * editfns.c (Fformat): Doc fix.
14322
14323 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
14324
14325 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
14326 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
14327 (Ffont_otf_alternates, Fquery_font): Doc fixes.
14328
14329 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
14330
14331 * buffer.c (Fbuffer_swap_text): New function.
14332 (syms_of_buffer): Defsubr it.
14333
14334 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
14335
14336 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
14337
14338 2008-02-25 Jason Rumney <jasonr@gnu.org>
14339
14340 * w32font.c (w32font_draw): Draw one character at a time when padding.
14341
14342 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
14343
14344 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
14345 Handle a nil arg. Use run_window_configuration_change_hook.
14346 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
14347 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
14348 Use run_window_configuration_change_hook.
14349
14350 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
14351
14352 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
14353 1-pixel width.
14354
14355 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
14356
14357 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
14358 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
14359 if the glyph in the font is zero pixel with.
14360
14361 * dispextern.h (struct glyph_string): New member padding_p.
14362
14363 * w32font.c (w32font_draw): Pay attention to s->padding_p.
14364
14365 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
14366
14367 * xfont.c (xfont_draw): Pay attention to s->padding_p.
14368
14369 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
14370
14371 * font.c: If the font driver doesn't have `shape' function, return Qnil.
14372
14373 2008-02-25 Jason Rumney <jasonr@gnu.org>
14374
14375 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
14376
14377 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
14378
14379 Allow fine-grained image-cache flushing.
14380 * dispextern.h (struct image): Add `dependencies' field.
14381 (clear_image_caches): Change arg to Lisp_Object.
14382 * image.c (make_image): Initialize `dependencies' field.
14383 (clear_image_cache): Change arg to allow fine-grained flushing.
14384 Perform the flush even if image-cache-eviction-delay is nil.
14385 (clear_image_caches): Change arg to Lisp_Object.
14386 (Fclear_image_cache): Expand meaning of the argument.
14387 (mark_image): Mark `dependencies' field.
14388 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
14389 (lface_hash): Use XHASH rather than XFASTINT.
14390 (face_at_buffer_position): Fix int -> EMACS_INT position.
14391 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
14392 (select_frame_for_redisplay): Remove code duplication.
14393 (redisplay_internal): Adapt arg to call to clear_image_caches.
14394
14395 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
14396
14397 * s/vms4-0.h:
14398 * s/vms4-2.h:
14399 * s/vms4-4.h:
14400 * s/vms5-5.h: Remove, unused.
14401
14402 * s/irix5-2.h:
14403 * s/irix6-0.h:
14404 * s/riscos5.h:
14405 * s/mach-bsd4-3.h:
14406 * m/mips4.h: Remove files for obsolete systems.
14407
14408 * Makefile.in:
14409 * filelock.c:
14410 * unexmips.c:
14411 * m/hp9000s300.h:
14412 * m/iris4d.h:
14413 * s/aix3-1.h:
14414 * s/hpux.h:
14415 * s/msdos.h:
14416 * s/usg5-0.h:
14417 * s/usg5-2-2.h:
14418 * s/usg5-2.h:
14419 * s/usg5-3.h: Remove references to obsolete variables.
14420
14421 * s/irix5-0.h: Remove, move all the contents ...
14422 * s/irix6-5.h: ... here. Simplify.
14423 * config.in: Regenerate.
14424
14425 2008-02-24 Jason Rumney <jasonr@gnu.org>
14426
14427 * w32term.c (x_draw_glyph_string_background): Clear the background
14428 manually when cleartype is in use.
14429 (x_draw_glyph_string_foreground): Draw text transparently when
14430 cleartype is in use.
14431
14432 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
14433 a font into it unless we have to.
14434
14435 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
14436
14437 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
14438 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
14439
14440 2008-02-18 Jason Rumney <jasonr@gnu.org>
14441
14442 * w32fns.c (Fw32_shell_execute): Encode parameters.
14443
14444 2008-02-09 Eli Zaretskii <eliz@gnu.org>
14445
14446 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
14447
14448 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
14449
14450 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
14451
14452 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
14453
14454 * xterm.c (x_set_offset): Don't change the gravity if
14455 CHANGE_GRAVITY is -1.
14456
14457 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
14458
14459 * fileio.c (auto_save_error_occurred): New var.
14460 (auto_save_error): Set it.
14461 (Fdo_auto_save): Don't overwrite the error message if an auto-save
14462 error occurred.
14463
14464 2008-02-23 Eli Zaretskii <eliz@gnu.org>
14465
14466 * w32.c (globals_of_w32): Add initializations for
14467 g_b_init_get_sid_sub_authority and
14468 g_b_init_get_sid_sub_authority_count.
14469
14470 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
14471
14472 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
14473 (font_parse_xlfd): Use them for sanity check.
14474 (Finternal_set_font_style_table): Make sure the table is bijective.
14475
14476 Consolidate the image_cache to the terminal struct.
14477 * termhooks.h (P_): Remove redundant def.
14478 (struct terminal): New field `image_cache'.
14479 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
14480 of FRAME_X_IMAGE_CACHE.
14481 * xterm.h (struct x_display_info): Remove image_cache field.
14482 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
14483 * w32term.h (struct w32_display_info): Remove image_cache field.
14484 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
14485 * macterm.h (struct mac_display_info): Remove image_cache field.
14486 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
14487 * xterm.c (x_term_init):
14488 * w32term.c (w32_term_init):
14489 * macterm.c (mac_term_init): Set the image_cache in the terminal.
14490 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
14491 Remove declarations.
14492 (clear_image_caches, mark_image_cache): New declarations.
14493 * xfaces.c (clear_face_cache):
14494 * xdisp.c (redisplay_internal): Use clear_image_caches.
14495 * image.c (clear_image_cache): Don't check that a frame is on
14496 a window-system before checking if it shares the same cache.
14497 (clear_image_caches): New function.
14498 (Fclear_image_cache): Use it.
14499 (mark_image): Move from allo.c.
14500 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
14501 * alloc.c (mark_image, mark_image_cache): Move to image.c.
14502 (mark_object): Don't call mark_image_cache for frames.
14503 (mark_terminals): Call mark_image_cache.
14504
14505 * lisp.h (Fdelete_terminal): Declare.
14506
14507 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
14508 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
14509 wrong_type_argument.
14510
14511 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
14512
14513 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
14514 malayalam.el, and tamil.el. Add sinhala.el.
14515
14516 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
14517
14518 * xterm.c (x_connection_closed): Consolidate identical tests.
14519 (x_delete_terminal): Don't crash if called via x_connection_closed.
14520
14521 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
14522
14523 * xdisp.c (decode_mode_spec): New arg string.
14524 (display_mode_element): Adjust for the above change.
14525
14526 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
14527
14528 * callint.c (Fcall_interactively): Use AREF.
14529
14530 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
14531
14532 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
14533
14534 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
14535
14536 * xfns.c (Fx_show_tip): Set string to " " if empty.
14537
14538 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
14539
14540 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
14541 with Qt.
14542
14543 2008-02-17 Kenichi Handa <handa@m17n.org>
14544
14545 * ftfont.c (ftfont_shape): Return Lispy number.
14546
14547 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
14548 for GCs.
14549 (Finternal_set_font_selection_order): Call font_update_sort_order
14550 only when enable_font_backend is set.
14551 (realize_x_face): Set face->font_info to that of default face only
14552 when enable_font_backend is set.
14553
14554 * xdisp.c (handle_composition_prop): Set it->c to the fist
14555 character of the composed region.
14556 (fill_composite_glyph_string): Set base_face->font_info to
14557 s->font_info. Get a face for ascii from base_face->ascii_face.
14558 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
14559 with a face already decided.
14560 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
14561 non-negative.
14562 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
14563 call font_prepare_composition unconditionally.
14564
14565 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
14566
14567 * xterm.h (struct x_display_info): New member font.
14568
14569 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
14570 (x_set_mouse_face_gc, x_new_font): Likewise.
14571 (x_term_init): Setup display_info->font.
14572 (x_delete_terminal): Free display_info->font.
14573
14574 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
14575
14576 * ftxfont.c (ftxfont_default_fid): Delete it.
14577 (ftxfont_open): Set xfont->fid to 0.
14578 (ftxfont_end_for_frame): Clear data specific to the frame and the
14579 font-driver.
14580
14581 * xftfont.c (xftfont_default_fid): Delete it.
14582 (xftfont_open): Set xfont->fid to 0.
14583
14584 * fontset.c (FONTSET_OBJLIST): New macro.
14585 (fontset_find_font): Update font-object list of the fontset.
14586 (free_realized_fontset): New function.
14587 (free_face_fontset): Call free_realized_fontset.
14588 (Ffont_info): Call font_close_object only when enable_font_backend
14589 is set.
14590
14591 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
14592 [HAVE_NTGUI]: Include w32term.h.
14593 [MAC_OS]: Include macterm.ch.
14594 (font_otf_ValueRecord): Use make_number.
14595 (font_finish_cache): Fix handling of reference count.
14596 (font_clear_cache): Update num_fonts.
14597 (font_open_entity): Update smallest_char_width and
14598 smallest_font_height of the frame.
14599 (font_close_object): Update num_fonts.
14600 (Fclear_font_cache): Fix finding the target cache data.
14601
14602 2008-02-16 Glenn Morris <rgm@gnu.org>
14603
14604 * fontset.c (Finternal_char_font): Fix compilation warning.
14605
14606 2008-02-16 Eli Zaretskii <eliz@gnu.org>
14607
14608 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
14609 instead of char arrays. Enlarge the size of array passed to
14610 get_token_information.
14611
14612 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
14613 warnings.
14614
14615 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
14616
14617 * .gdbinit: Don't set `args', it breaks gdb --args.
14618
14619 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
14620
14621 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
14622 within a narrowed buffer.
14623
14624 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
14625
14626 * coding.c (decode_coding_object, encode_coding_object):
14627 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
14628
14629 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
14630
14631 * coding.c (coding_set_destination): Use BEG_BYTE rather than
14632 hardcoding 1.
14633 (detect_coding_system):
14634 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
14635 (string_char_to_byte, string_byte_to_char, insert_from_gap):
14636 * insdel.c (insert_from_gap):
14637 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
14638 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
14639 (string_to_multibyte):
14640 * character.c (chars_in_text, multibyte_chars_in_text):
14641 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
14642
14643 * character.h (FETCH_STRING_CHAR_ADVANCE)
14644 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
14645 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
14646 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
14647
14648 * casefiddle.c (casify_region): Only call after-change and composition
14649 functions on the part of the region that was changed.
14650
14651 * keyboard.c (read_avail_input):
14652 * frame.c (Fdelete_frame): Call Fdelete_terminal.
14653
14654 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
14655
14656 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
14657 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
14658
14659 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
14660
14661 * w32menu.c (push_submenu_start, push_submenu_end)
14662 (push_left_right_boundary, push_menu_pane, push_menu_item):
14663 * keyboard.c (read_key_sequence): Don't pass args with side effects
14664 to AREF, it fails when compiling with -DENABLE_CHECKING.
14665
14666 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
14667
14668 * Makefile.in (${lispsource}international/charprop.el):
14669 Delete this target.
14670
14671 * search.c (boyer_moore): Fix incorrect synching of the trunk and
14672 emacs-unicode-2.
14673
14674 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
14675
14676 * terminal.c (Fdelete_terminal): Clean up the `force' path.
14677
14678 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
14679
14680 * frame.c (Qnoelisp): New symbol.
14681 (syms_of_frame): Initialize it.
14682 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
14683 harmless Elisp code, from a strong `force' from x_connection_closed.
14684 * frame.h (Qnoelisp): Declare.
14685 * xterm.c (x_connection_closed): Pass `noelisp'.
14686
14687 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
14688 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
14689 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
14690 rather than `int' for the type of `type'.
14691
14692 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
14693
14694 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
14695
14696 * Makefile.in (GNUC): Remove support for gcc-1.x.
14697
14698 2008-02-10 Richard Stallman <rms@gnu.org>
14699
14700 * lisp.h (ASET): Use AREF, not ASLOT.
14701
14702 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
14703
14704 * lisp.h (ASET): Check bounds.
14705
14706 2008-02-10 Glenn Morris <rgm@gnu.org>
14707
14708 * buffer.c (mode-name): Doc fix.
14709
14710 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
14711
14712 * Makefile.in:
14713 * emacs.c:
14714 * gmalloc.c:
14715 * keyboard.c:
14716 * lisp.h:
14717 * m/ibm370aix.h:
14718 * process.c:
14719 * regex.c:
14720 * s/hpux.h:
14721 * sysdep.c:
14722 * sysselect.h:
14723 * systty.h:
14724 * unexec.c:
14725 * w32term.c:
14726 * xsmfns.c:
14727 * xterm.c: Remove code that deals with obsolete variables.
14728
14729 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
14730
14731 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
14732 nothing else needs it anymore.
14733
14734 2008-02-09 Eli Zaretskii <eliz@gnu.org>
14735
14736 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
14737 instead of unibyte_char_to_multibyte.
14738
14739 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
14740
14741 * s/gnu-linux.h: Remove commented out code.
14742
14743 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
14744
14745 * Makefile.in: Update what RMS says about using autoconf.
14746 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
14747 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
14748 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
14749 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
14750
14751 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
14752
14753 * keymap.c (Fkey_description): Move side effect outside of macro call.
14754
14755 * xfaces.c (Finternal_make_lisp_face):
14756 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
14757
14758 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
14759 (syms_of_fontset): Use ASET.
14760
14761 * fns.c (concat): Move side effect outside of macro call.
14762 (hash_clear): Use ASET.
14763
14764 2008-02-08 Richard Stallman <rms@gnu.org>
14765
14766 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
14767 If FORCE, and frame has a surrogate minibuffer for another frame,
14768 delete the other frame first.
14769
14770 2008-02-07 Timo Savola <timo.savola@iki.fi>
14771
14772 * xterm.c (x_detect_focus_change): Handle embed client message.
14773 (handle_one_xevent): Ditto.
14774 (handle_one_xevent): If embedded and we get a button press/release,
14775 request focus.
14776 (xembed_set_info, xembed_send_message): New functions.
14777 (x_make_frame_visible): Call xembed_set_info if embedded.
14778 (x_make_frame_invisible): Call xembed_set_info if embedded.
14779 (x_term_init): Initialize Xatom_XEMBED.
14780 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
14781 (x_iconify_frame): Ditto.
14782
14783 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
14784 (enum xembed_info, enum xembed_message, enum xembed_focus)
14785 (enum xembed_modifier, enum xembed_accelerator): New.
14786 (xembed_set_info, xembed_send_message): Declare.
14787 (FRAME_X_EMBEDDED_P): New.
14788
14789 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
14790 gtk_plug_new.
14791
14792 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
14793 window ID of a frame.
14794 (x_window): Reparent frame if embedded.
14795 (Fx_create_frame): Don't set border width if embedded.
14796
14797 * emacs.c (USAGE3): Add --parent-id.
14798 (standard_args): Ditto.
14799
14800 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
14801
14802 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
14803
14804 2008-02-07 Jim Meyering <meyering@redhat.com>
14805
14806 Use "do...while (0)", not "if (1)...else" in macro definitions.
14807 The latter provokes a warning from gcc about the empty else, when
14808 followed by ";". Also, without that trailing semicolon, it would
14809 silently swallow up any following statement.
14810 * syntax.h (SETUP_SYNTAX_TABLE)
14811 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
14812 * buffer.h (DECODE_POSITION): Likewise.
14813 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
14814 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
14815 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
14816 (FETCH_CHAR_ADVANCE): Likewise.
14817 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
14818
14819 2008-02-07 Jim Meyering <meyering@redhat.com>
14820
14821 * lread.c [lint]: Don't include <sys/inode.h>.
14822
14823 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
14824
14825 * xselect.c (x_handle_dnd_message):
14826 * xmenu.c (digest_single_submenu, xmenu_show):
14827 * xdisp.c (with_echo_area_buffer_unwind_data)
14828 (format_mode_line_unwind_data, unwind_format_mode_line)
14829 (display_menu_bar):
14830 * eval.c (Ffetch_bytecode):
14831 * doc.c (store_function_docstring):
14832 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
14833 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
14834 * buffer.c (add_overlay_mod_hooklist): Use ASET.
14835
14836 2008-02-07 Kenichi Handa <handa@m17n.org>
14837
14838 * ftxfont.c (ftxfont_open): Don't set
14839 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
14840
14841 * ftfont.c (ftfont_open): Fix previous change.
14842
14843 2008-02-06 Jason Rumney <jasonr@gnu.org>
14844
14845 * w32font.c (w32font_text_extents): Fill in lbearing metric.
14846 Use cached metrics for ASCII characters.
14847 (w32font_open_internal): Don't set font's owning_frame.
14848 Cache metrics for ASCII characters.
14849
14850 * w32font.h (struct w32font_info): Add ascii_metrics.
14851 Remove owning_frame.
14852
14853 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
14854
14855 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
14856 to negative value.
14857
14858 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
14859
14860 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
14861
14862 * charset.c (syms_of_charset): Set QCtest and Qeq.
14863
14864 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
14865
14866 * process.c (Fstart_process):
14867 * callproc.c (Fcall_process): Handle the case where
14868 Funhandled_file_name_directory returns nil.
14869
14870 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
14871 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
14872 * font.c (check_gstring): Use them and AREF to access the vector before
14873 we know it's really a gstring.
14874 (Ffont_shape_text): Fix typo.
14875 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
14876
14877 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
14878 Declare.
14879
14880 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
14881
14882 2008-02-05 Jason Rumney <jasonr@gnu.org>
14883
14884 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
14885 Set smallest_font_height and smallest_char_width in display info.
14886
14887 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
14888
14889 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
14890
14891 2008-02-05 Miles Bader <miles@gnu.org>
14892
14893 * xfaces.c (get_lface_attributes, merge_named_face)
14894 (lookup_named_face, lookup_derived_face, realize_named_face):
14895 Revert 2008-02-01 change by cyd@stupidchicken.com.
14896
14897 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
14898
14899 * fontset.c (Ffontset_info): Handle the case of inhibitting the
14900 fallback fonts.
14901 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
14902
14903 2008-02-04 Jason Rumney <jasonr@gnu.org>
14904
14905 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
14906 set full_name.
14907 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
14908
14909 2008-02-03 Jason Rumney <jasonr@gnu.org>
14910
14911 * makefile.w32-in (OBJ1): Include font.o here.
14912 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
14913
14914 2008-02-02 Jason Rumney <jasonr@gnu.org>
14915
14916 * makefile.w32-in (temacs): Bump EMHEAP to 21.
14917
14918 2008-02-01 Jason Rumney <jasonr@gnu.org>
14919
14920 * s/cygwin.h: Define VIRT_ADDR_VARIES.
14921
14922 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
14923
14924 2008-02-01 Andreas Schwab <schwab@suse.de>
14925
14926 * Makefile.in (shortlisp, lisp): Update for rename of
14927 ../lisp/language/myanmar.el.
14928
14929 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
14930
14931 * xfaces.c (get_lface_attributes): Delete function.
14932 (merge_named_face, lookup_named_face, lookup_derived_face)
14933 (realize_named_face): Call lface_from_face_name directly, and use
14934 the fact that merge_face_vectors does not alter its FROM argument.
14935
14936 2008-02-01 Jason Rumney <jasonr@gnu.org>
14937
14938 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
14939 input in the default locale. Handle non-Unicode multibyte input.
14940
14941 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14942
14943 * fontset.c (reorder_font_vector): Exclude nil elements from the
14944 font group. Don't try multiple fonts.
14945 (fontset_font): Adjust for the above change.
14946 (Finternal_char_font): Return nil if the found font doesn't
14947 contain the character ch.
14948
14949 * Makefile.in (lisp, shortlisp): Add cham.el.
14950
14951 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14952
14953 * font.h (FONTP): Make it return 1 also for a font-object.
14954
14955 * .gdbinit (xfontset): New function.
14956
14957 * font.c (font_find_for_lface): Check if the character C is
14958 supported or not only for the first font.
14959
14960 * fontset.c (reorder_font_vector): Fix typo.
14961 (fontset_find_font): Don't add a font-spec specifying a script.
14962 Use 0 (not Qt) for the indication of empty font-group. Change the
14963 format of RFONT-DEF. Return Qt if no font in the font-group
14964 support the character.
14965 (fontset_font): Adjust for the above change. If no font was
14966 found the character, remember that.
14967 (face_for_char): Adjust for the change of RFONT-DEF.
14968 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
14969 no font for the target.
14970 (Finternal_char_font): Adjust for the change of RFONT-DEF.
14971
14972 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14973
14974 * font.c (font_load_for_face): Handle the case that the font in
14975 face->lface is a string.
14976
14977 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14978
14979 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
14980
14981 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14982
14983 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
14984 Fix previous change. If the frame is not on a window system,
14985 signal an error.
14986
14987 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14988
14989 * coding.c (decode_coding_object, encode_coding_object): Adjust
14990 marker positions after conversion.
14991
14992 * lisp.h (struct Lisp_Marker): New member need_adjustment.
14993
14994 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14995
14996 * font.c (font_find_for_lface): Fix the handling of the return
14997 value of font_has_char.
14998 (Ffont_shape_text): Fix previous change.
14999
15000 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
15001 (fontset_ref_and_range): Delete it.
15002 (fontset_find_font): Call char_table_ref_and_range instead of
15003 FONTSET_REF_AND_RANGE.
15004 (make_fontset): Don't setup font groups of Latin here.
15005 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
15006 (new_fontset_from_font): Make the specified font the default for
15007 all Latin characters.
15008
15009 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15010
15011 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
15012 is on a window system before accessing the fontset of the frame.
15013
15014 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15015
15016 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
15017
15018 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
15019 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
15020
15021 * font.c (Ffont_shape_text): If the font driver doesn't have a
15022 shaper function, make zero-width glyphs to have at least one-pixel
15023 width. Fix setting of `to' field of glyphs.
15024
15025 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15026
15027 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
15028 glyphs.
15029
15030 * font.h (struct font_driver): Improve docstring of member `shape'.
15031
15032 2008-02-01 Kenichi Handa <handa@m17n.org>
15033
15034 * composite.c (syms_of_composite): Fix docstring of
15035 auto-composition-function.
15036
15037 * font.h (LGLYPH_SIZE): New macro.
15038
15039 * font.c (Ffont_fill_gstring): Stop filling when a character not
15040 supported by the font is found.
15041 (Ffont_shape_text): When a shape callback function returns nil,
15042 try at most two more times with larger gstring.
15043 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
15044
15045 * xdisp.c (handle_auto_composed_prop): Change the argument to
15046 auto-composition-function.
15047
15048 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
15049 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
15050 Lispy glyph and store it in the lgstring.
15051
15052 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
15053
15054 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
15055
15056 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15057
15058 * font.c (Ffont_shape_text): Avoid unnecessary composition.
15059
15060 * fontset.c (Vfont_encoding_charset_alist): New variable.
15061 (syms_of_fontset): DEFVAR it.
15062 (reorder_font_vector, fontset_find_font): Optimize for the case of
15063 no need of reordering.
15064 (face_for_char): Map the charset property by
15065 Vfont_encoding_charset_alist.
15066
15067 2008-02-01 Jason Rumney <jasonr@gnu.org>
15068
15069 * w32font.c (logfonts_match): Don't check adstyle here.
15070 (font_matches_spec): Check here against physical font instead.
15071 (add_font_entity_to_list): Avoid some substitutions.
15072
15073 * font.c (font_parse_fcname): Default weight and slant to normal.
15074 (font_score): Prefer normal fonts if weight or slant unspecified.
15075 (font_score) [WINDOWSNT]: Scale weight difference down to closer
15076 match freetype scores.
15077
15078 2008-02-01 Jason Rumney <jasonr@gnu.org>
15079
15080 * w32font.c (w32font_text_extents): Don't use the frame stored in the
15081 font, as it may have been deleted.
15082 (w32_enumfont_pattern_entity): Map generic family to adstyle using
15083 most common hyphenless variation.
15084 (logfonts_match): Check generic family.
15085 (font_matches_spec): Don't check generic family here.
15086 (fill_in_logfont): Set generic family based on adstyle.
15087
15088 * w32font.h (w32font_get_cache): Update declaration.
15089
15090 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15091
15092 * ftfont.c (ftfont_get_cache): Adjust the argument type.
15093
15094 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
15095 If none of the new drivers are available, call font_update_drivers
15096 with the old drivers.
15097
15098 * w32font.c (w32font_get_cache): Adjust the argument type.
15099
15100 * xfont.c (xfont_get_cache): Adjust the argument type.
15101
15102 * font.h (struct font_driver): Change argument type of get_cache.
15103
15104 * xftfont.c (xftfont_start_for_frame): Delete prototype.
15105
15106 * font.c (Ffont_get): Fix arguments to Fassoc.
15107 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
15108 (font_clear_cache): New function.
15109 (font_list_entities, font_matching_entity): Use font_get_cache.
15110 (font_update_drivers): Call font_clear_cache when finishing a driver.
15111
15112 * fontset.c (fontset_find_font): Fix previous change.
15113
15114 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15115
15116 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
15117 dpyinfo->font_table.
15118 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
15119 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
15120
15121 * font.c (font_at): Handle the case that the arg C is negative.
15122 Handle the unibyte case.
15123 (Ffont_at): Call font_at with the arg C -1.
15124
15125 * xdisp.c (handle_auto_composed_prop): Don't get a character at
15126 the position here, and call font_at with the arg C -1.
15127 Don't check the range of the existing composition at the point.
15128
15129 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15130
15131 * fontset.c (fontset_add): New args charset_id and family.
15132 Change caller.
15133 (load_font_get_repertory, fontset_find_font): Assume that
15134 font_spec is always a font-spec object.
15135 (Fset_fontset_font): Always store a font-spec object in a fontset.
15136
15137 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
15138 instead of get_property_and_range.
15139
15140 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15141
15142 * xftfont.c (struct xftfont_info): Delete the member ft_face.
15143 (xftfont_open): Don't keep locking face.
15144 (xftfont_close): Don't unlock face.
15145 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
15146
15147 * fontset.c (fontset_find_font): Don't prefer a font of
15148 supplementary charset.
15149
15150 2008-02-01 Kenichi Handa <handa@m17n.org>
15151
15152 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
15153 script, langsys_tag to langsys, new member script.
15154 (OTF_TAG_STR): Terminate by '\0'.
15155 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
15156 listing to the script specified in that property. Fix arg to
15157 OTF_check_features.
15158
15159 2008-02-01 Jason Rumney <jasonr@gnu.org>
15160
15161 * w32font.h: New file.
15162
15163 * w32font.c: Include it.
15164 (struct w32font_info): Add owning_frame field. Move to w32font.h.
15165 (w32font_open): Set owning_frame.
15166 (w32font_text_extents): Use owning_frame.
15167 (struct font_callback_data): Add opentype_only field.
15168 (add_font_entity_to_list): Use it to filter fonts.
15169 Don't check against full name.
15170 (w32font_list_internal): New function.
15171 (w32font_list): Use it.
15172 (w32font_match_internal): New function.
15173 (w32font_match): Use it.
15174 (w32font_open_internal): New function.
15175 (w32font_open): Use it.
15176 (w32font_get_cache, w32font_close, w32font_has_char)
15177 (w32font_encode_char, w32font_text_extents, w32font_draw):
15178 Make non-static.
15179
15180 * makefile.w32-in (w32font.o): Depend on w32font.h.
15181
15182 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15183
15184 * charset.c (Fdefine_charset_internal): Record a supplementary
15185 charset at the tail of Vcharset_order_list.
15186
15187 * font.c (Ffont_shape_text): Fix the return value.
15188
15189 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
15190
15191 * xdisp.c (handle_auto_composed_prop): Fix previous change.
15192
15193 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15194
15195 * ftfont.c (struct OpenTypeSpec): New struct.
15196 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
15197 (ftfont_get_open_type_spec): New function.
15198 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
15199
15200 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
15201
15202 2008-02-01 Jason Rumney <jasonr@gnu.org>
15203
15204 * w32font.c (add_font_entity_to_list): Compare only the beginning
15205 of full name.
15206
15207 2008-02-01 Kenichi Handa <handa@m17n.org>
15208
15209 * xdisp.c (handle_auto_composed_prop): Simplify the code.
15210 Never return HANDLED_RECOMPUTE_PROPS.
15211
15212 2008-02-01 Kenichi Handa <handa@m17n.org>
15213
15214 * font.c (font_gstring_produce): Delete it.
15215
15216 * composite.h (COMPOSITION_METHOD):
15217 Handle COMPOSITION_WITH_GLYPH_STRING.
15218
15219 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15220
15221 * xfont.c (Qx): Delete.
15222 (syms_of_xfont): Don't initialize Qx.
15223
15224 * composite.h (enum composition_method):
15225 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
15226
15227 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15228
15229 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
15230 (choose_face_font): Accept new form of font-spec.
15231
15232 * frame.h (font_driver_list): Declare it unconditionally.
15233 (struct frame): Define members font_driver_list and font_data_list
15234 unconditionally.
15235
15236 * fontset.c: Include "font.h" unconditionally.
15237 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
15238 (Fset_fontset_font): Accept a font-spec object.
15239
15240 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
15241 PIXEL_SIZE part a wild card.
15242
15243 * dispextern.h (struct glyph_string): Define members clip and
15244 num_clips unconditionally.
15245 (struct face): Define members font_info and extra unconditionally.
15246
15247 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
15248 ftfont_info only when HAVE_LIBOTF is defined.
15249
15250 2008-02-01 Andreas Schwab <schwab@suse.de>
15251
15252 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
15253 and end.
15254
15255 2008-02-01 Jason Rumney <jasonr@gnu.org>
15256
15257 * w32font.c (w32font_driver): Add new fields.
15258
15259 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15260
15261 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
15262 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
15263 (LIBES): Add @M17N_FLT_CFLAGS@.
15264
15265 * composite.c (compose_text): Don't treat the new style
15266 composition specially.
15267
15268 * emacs.c (main): Call syms_of_font unconditionally.
15269
15270 * font.h (FONT_ENTITY_NOT_LOADABLE)
15271 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
15272 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
15273 (struct font_driver): New member shape.
15274 (font_registry_charsets): Extern it.
15275 (font_find_for_lface, font_prepare_composition): Adjust prototype.
15276 (font_otf_capability, font_drive_otf): Delete their externs.
15277
15278 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
15279 (font_charset_alist, font_registry_charsets): Move from xfont.c
15280 and rename.
15281 (font_prop_validate_otf): New function.
15282 (font_property_table): Register it for QCotf.
15283 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
15284 (font_drive_otf): Delete.
15285 (font_prepare_composition): New arg F. Adjust for the change of
15286 lispy gstring.
15287 (font_find_for_lface): New arg C.
15288 (font_load_for_face): Adjust for the change of font_find_for_lface.
15289 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
15290 lispy gstring.
15291 (Ffont_shape_text): New function.
15292 (Fopen_font): If the font size is not given, use 12-pixel.
15293 (Ffont_at): New arg STRING.
15294 (syms_of_font): Initalize font_charset_alist.
15295 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
15296 conditionally.
15297
15298 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
15299 fonts of the same font-spec. Change the format of RFONT-DEF.
15300 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
15301 Adjust for the change of RFONT-DEF.
15302 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
15303
15304 * ftfont.h: New file.
15305
15306 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
15307 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
15308 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
15309 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
15310 font_otf_capability and font_drive_otf, set ftfont_shape.
15311 (ftfont_list): Adjust for the change of :otf property value.
15312 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
15313 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
15314 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
15315 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
15316 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
15317 (otf_gstring, gstring, m17n_flt_initialized): New variables.
15318
15319 * w32term.c (x_draw_composite_glyph_string_foreground):
15320 Adjust for the change of lispy gstring.
15321
15322 * xdisp.c (handle_composition_prop): Adjust for the change of
15323 lispy gstring. Call a function for auto-composition with the
15324 third arg it->window.
15325 (fill_composite_glyph_string): Adjust for the change of lispy string.
15326 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
15327
15328 * xfaces.c (set_font_frame_param): Adjust for the change of
15329 font_find_for_lface.
15330
15331 * xfont.c (x_font_charset_alist): Move to font.c and rename.
15332 (xfont_registry_charsets): Likewise. Change caller.
15333 (syms_of_xfont): Don't handle x_font_charset_alist.
15334
15335 * xftfont.c: Include "ftfont.h".
15336 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
15337 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
15338 (xftfont_close) [HAVE_LIBOTF]: Close otf.
15339 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
15340 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
15341 Set xftfont_driver.shape to xftfont_shape.
15342
15343 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
15344 the change of lispy gstring.
15345
15346 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15347
15348 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
15349
15350 2008-02-01 Jason Rumney <jasonr@gnu.org>
15351
15352 * w32font.c (w32font_draw): Fill background manually.
15353
15354 2008-02-01 Jason Rumney <jasonr@gnu.org>
15355
15356 * font.c (Qfontp): Remove unused symbol.
15357 (QCantialias): New symbol.
15358 (syms_of_font): Define it.
15359 (font_property_table): Set a validator for QCantialias.
15360
15361 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
15362 Define if not already.
15363 (QCfamily): Share with xfaces.c.
15364 (Qstandard, Qsubpixel, Qnatural): New symbols.
15365 (syms_of_w32font): Define them. Don't define QCfamily here.
15366 (w32_antialias_type, lispy_antialias_type): New functions.
15367 (w32_enumfont_pattern_entity): New arg requested_font.
15368 Set antialias parameter if non-default was requested.
15369 (fill_in_logfont): Fill in lfQuality if :antialias specified.
15370
15371 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15372
15373 * lread.c (read1): Undo the previous change.
15374
15375 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
15376
15377 * frame.c (Fdelete_frame): Call font_update_drivers only when
15378 USE_FONT_BACKEND is defined.
15379
15380 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15381
15382 * font.h (struct font_bitmap): New member bits_per_pixel.
15383 (struct font_driver): New members start_for_frame and end_for_frame.
15384 (struct font_data_list): New struct.
15385 (font_put_frame_data, font_get_frame_data): Extern them.
15386
15387 * frame.h (struct frame): New member font_data_list.
15388
15389 * font.c (font_update_drivers): Call driver->start_for_frame and
15390 driver->end_for_frame at proper timings.
15391 (font_put_frame_data, font_get_frame_data): New functions.
15392 (Ffont_spec): Add usage in the docstring.
15393
15394 * frame.c (make_frame): Initialize f->font_data_list to NULL.
15395 (Fdelete_frame): Call font_update_drivers.
15396
15397 * xftfont.c (struct xftface_info): Delete the member xft_draw.
15398 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
15399 (xftfont_get_xft_draw): New function.
15400 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
15401 (xftfont_end_for_frame): New function.
15402 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
15403
15404 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
15405 Change argument. Cache GCs in the per-frame data.
15406 (struct ftxfont_frame_data): New struct.
15407 (ftxfont_draw_bitmap): New arg gc_fore and flush.
15408 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
15409 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
15410 (ftxfont_end_for_frame): New function.
15411 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
15412
15413 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
15414
15415 2008-02-01 Kenichi Handa <handa@m17n.org>
15416
15417 * xselect.c (Vselection_coding_system)
15418 (Vnext_selection_coding_system): Delete them.
15419 (syms_of_xselect): Don't declare selection-coding-system and
15420 next-selection-coding-system. They are declared in select.el.
15421
15422 2008-02-01 Jason Rumney <jasonr@gnu.org>
15423
15424 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
15425
15426 * w32fns.c: Include imm.h.
15427 (get_composition_string_fn, get_ime_context_fn): New optional
15428 system functions.
15429 (globals_of_w32fns): Load them from imm32.dll.
15430 (ignore_ime_char): New flag.
15431 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
15432 WM_IME_ENDCOMPOSITION messages.
15433
15434 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
15435 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
15436
15437 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15438
15439 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
15440 (READCHAR_REPORT_MULTIBYTE): New macro.
15441 (readchar): New 2nd arg MULTIBYTE.
15442 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
15443 Make symbol's name multibyte according to the multibyteness of the
15444 source.
15445
15446 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15447
15448 * xfaces.c (face_for_overlay_string): Call lookup_face with
15449 correct arguments (fix of synching with the trunk).
15450
15451 2008-02-01 Kenichi Handa <handa@m17n.org>
15452
15453 * font.c (font_prop_validate_symbol, font_prop_validate_style)
15454 (font_prop_validate_non_neg, font_prop_validate_spacing):
15455 Delete argument prop_index.
15456 (font_property_table): Change arguments to validater. Change Callers.
15457 (font_lispy_object): Delete.
15458 (font_at): Use font_find_object instead fo font_lispy_object.
15459
15460 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15461
15462 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
15463 and file names.
15464
15465 2008-02-01 Jason Rumney <jasonr@gnu.org>
15466
15467 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
15468 (font_matches_spec): Remove debug output.
15469 (add_font_entity_to_list): Avoid using substituted fonts.
15470
15471 2008-02-01 Jason Rumney <jasonr@gnu.org>
15472
15473 * doc.c (Fsnarf_documentation):
15474 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
15475
15476 2008-02-01 Miles Bader <miles@gnu.org>
15477
15478 * dispextern.h (struct glyph_row): Only define "clip" field if
15479 HAVE_WINDOW_SYSTEM is defined.
15480
15481 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
15482
15483 Fix up multi-tty merge.
15484
15485 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
15486 and indentation.
15487
15488 * xfaces.c (free_realized_face, clear_face_gcs):
15489 Include font_done_for_face in the input_blocked section, just in case.
15490
15491 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
15492 (get_char_face_and_encoding): Undo last change and remove the *other*
15493 duplicate definition (i.e. keep the one that's better scoped and that
15494 includes code for the font-backend).
15495
15496 * terminal.c (create_terminal): Default keyboard_coding to
15497 `no-conversion' and terminal_coding to `undecided'.
15498
15499 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
15500
15501 * fontset.c (free_realized_fontsets): Check that the table entry does
15502 contain a fontset before trying to compare it to `base'.
15503
15504 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
15505 syms_of_charset, and syms_of_coding earlier because init_window_once
15506 now needs Vcoding_system_hash_table to be setup.
15507
15508 * coding.h (default_buffer_file_coding): Remove.
15509
15510 * coding.c (default_buffer_file_coding): Remove.
15511 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
15512 than ->symbol, and use the terminal-local coding system.
15513 (syms_of_coding): Don't setup the coding-systems that are not
15514 terminal-local.
15515 (Fdefine_coding_system_internal): Use XCAR/XCDR.
15516
15517 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
15518 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
15519
15520 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
15521 in chartab.c and were re-added here by mistake.
15522 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
15523
15524 * doc.c (Fsnarf_documentation):
15525 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
15526 src to etc.
15527
15528 * ChangeLog.10: Add mistakenly removed entry.
15529
15530 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
15531
15532 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
15533
15534 2008-02-01 Miles Bader <miles@gnu.org>
15535
15536 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
15537 Add extra args to FACE_FOR_CHAR.
15538
15539 2008-02-01 Kenichi Handa <handa@m17n.org>
15540
15541 * keymap.c (where_is_internal_1): If key is a cons, store the copy
15542 in sequence.
15543
15544 * chartab.c (map_sub_char_table, map_char_table): If the range
15545 contains just one character, call the function with that character
15546 even if the depth is not 3.
15547
15548 2008-02-01 Jason Rumney <jasonr@gnu.org>
15549
15550 * w32font.c (w32font_text_extents): Calculate metrics for the
15551 whole string.
15552
15553 2008-02-01 Jason Rumney <jasonr@gnu.org>
15554
15555 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
15556
15557 2008-02-01 Jason Rumney <jasonr@gnu.org>
15558
15559 * w32term.c (x_set_glyph_string_clipping): Use
15560 get_glyph_string_clip_rects.
15561 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
15562 Adjust for the change of struct glyph_string.
15563
15564 * w32font.c (w32font_draw): Do clipping here.
15565
15566 2008-02-01 Kenichi Handa <handa@m17n.org>
15567
15568 * xftfont.c (xftfont_draw): Adjust for the change of struct
15569 glyph_string.
15570
15571 * xterm.c (x_set_glyph_string_clipping): Use
15572 get_glyph_string_clip_rects.
15573 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
15574 Adjust for the change of struct glyph_string.
15575
15576 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
15577 the resulting clip(s}.
15578 (expose_overlaps): Add arg r. Change callers. Set it to
15579 row->clip temporarily.
15580 (expose_window): Redraw rows overlapping the exposed area.
15581
15582 * dispextern.h (struct glyph_row): New member clip.
15583 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
15584 clip_height, new member clip, and num_clips.
15585
15586 2008-02-01 Kenichi Handa <handa@m17n.org>
15587
15588 * data.c (Fchar_or_string_p): Fix docstring.
15589
15590 2008-02-01 Kenichi Handa <handa@m17n.org>
15591
15592 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
15593 create a temporary XftDraw object.
15594
15595 2008-02-01 Kenichi Handa <handa@m17n.org>
15596
15597 * font.c (Ffontp): Fix docstring.
15598
15599 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
15600 strong evidence of ISO-2022.
15601
15602 2008-02-01 Kenichi Handa <handa@m17n.org>
15603
15604 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
15605 SYNTAX_ENTRY_FOLLOW_PARENT.
15606
15607 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
15608
15609 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
15610 its type.
15611 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
15612 Update to the new type of weak_hash_tables and next_weak.
15613
15614 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
15615 a plain C pointer to Lisp_Hash_Table.
15616
15617 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
15618 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
15619 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
15620 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
15621 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
15622 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
15623 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
15624 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
15625 (GC_EQ): Remove since they've been identical to their non-GC_
15626 alter-egos ever since the markbit was eradicated.
15627
15628 * alloc.c:
15629 * buffer.c:
15630 * buffer.h:
15631 * data.c:
15632 * fileio.c:
15633 * filelock.c:
15634 * fns.c:
15635 * frame.h:
15636 * lisp.h:
15637 * macterm.c:
15638 * print.c:
15639 * process.c:
15640 * w32fns.c:
15641 * w32menu.c:
15642 * w32term.c:
15643 * xfns.c:
15644 * xmenu.c:
15645 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
15646
15647 2008-02-01 Kenichi Handa <handa@m17n.org>
15648
15649 * chartab.c (map_sub_char_table): Make it work for the top-level
15650 char-table. Fix handling of parent char-table.
15651 (map_char_table): Adjust for the above change.
15652
15653 2008-02-01 Jason Rumney <jasonr@gnu.org>
15654
15655 * w32font.c (Qgdi): Rename from Qw32.
15656
15657 2008-02-01 Jason Rumney <jasonr@gnu.org>
15658
15659 * w32bdf.c (get_quoted_string): Make function static.
15660
15661 2008-02-01 Kenichi Handa <handa@m17n.org>
15662
15663 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
15664 bigger ascent and descent than those of the font, use them as
15665 font's ascent and descent.
15666
15667 2008-02-01 Kenichi Handa <handa@m17n.org>
15668
15669 * Makefile.in (${lispsource}international/charprop.el): Move this
15670 target within "#ifdef HAVE_UNIDATA" and "#endif".
15671
15672 2008-02-01 Kenichi Handa <handa@m17n.org>
15673
15674 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
15675 (shortlisp): Add ../lisp/language/tai-viet.el.
15676
15677 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
15678
15679 * Makefile.in (${lispsource}international/charprop.el): Depend on
15680 temacs${EXEEXT}.
15681
15682 2008-02-01 Jason Rumney <jasonr@gnu.org>
15683
15684 * w32font.c (w32font_close): Delete the GDI font object.
15685
15686 * w32menu.c: Include character.h.
15687
15688 * w32proc.c: Likewise.
15689
15690 * w32select.c: Likewise.
15691
15692 * makefile.w32-in (w32proc.o): Depend on character.h.
15693
15694 2008-02-01 Jason Rumney <jasonr@gnu.org>
15695
15696 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
15697
15698 * w32menu.c (syms_of_w32menu): Likewise.
15699
15700 * w32proc.c (syms_of_ntproc): Likewise.
15701
15702 * w32select.c (syms_of_w32select): Likewise.
15703
15704 * w32term.c (syms_of_w32term): Likewise.
15705
15706 2008-02-01 Jason Rumney <jasonr@gnu.org>
15707
15708 * w32font.c (w32font_draw): Delete brush after using it.
15709
15710 2008-02-01 Jason Rumney <jasonr@gnu.org>
15711
15712 * w32font.c (w32font_open): Don't set font_idx.
15713 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
15714 to font settings.
15715 (w32font_draw): Fill background explicitly.
15716
15717 2008-02-01 Jason Rumney <jasonr@gnu.org>
15718
15719 * w32term.c (w32_initialize): Don't call w32font_initialize.
15720
15721 * w32font.c (w32font_info): Remove subranges.
15722 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
15723 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
15724 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
15725 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
15726 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
15727 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
15728 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
15729 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
15730 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
15731 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
15732 New symbols.
15733 (font_callback_data): New struct.
15734 (w32font_list, w32font_match): Use it.
15735 (w32font_open): Don't populate subranges.
15736 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
15737 (w32font_encode_char): Always return unicode code-point as-is.
15738 (w32font_text_extents): Supply a transformation matrix to
15739 GetGlyphOutline. Never look up by glyph index. Avoid looping
15740 twice. Use unicode version of GetTexExtentPoint32 instead of
15741 glyph index version.
15742 (set_fonts_frame): Remove.
15743 (w32_enumfont_pattern_entity): Add frame parameter, use it to
15744 set frame parameter. Use backward compatible fake foundries.
15745 Save generic family in extra slot under QCfamily. Make width slot
15746 constant. Save QCspacing value. Save list of scripts instead of
15747 binary subranges.
15748 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
15749 (add_font_entity_to_list): Use font_callback_data struct. Filter
15750 unwanted fonts.
15751 (add_one_font_entity_to_list): Use font_callback_data struct.
15752 (w32_registry): Default to iso10646_1.
15753 (fill_in_logfont): Use dpi from extra slot. Don't bother with
15754 string font registries. Don't fill in font name if it is a generic
15755 family name, fill family instead. Use spacing, family and script
15756 extra info to fill pitch, family and charset fields.
15757 (list_all_matching_fonts): Use font_callback_data struct.
15758 (unicode_range_for_char): Remove.
15759 (font_supported_scripts): New function.
15760 (w32font_initialize): Remove.
15761 (syms_of_w32font): Update which symbols are defined.
15762
15763 2008-02-01 Jason Rumney <jasonr@gnu.org>
15764
15765 * font.c (font_pixel_size): Reverse assq_no_quit args.
15766
15767 * w32term.h (FONT_WIDTH): Report max width, not average.
15768 (FONT_MAX_WIDTH): Remove.
15769 (FONT_AVG_WIDTH): New macro.
15770
15771 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
15772 redefinition of FONT_WIDTH.
15773
15774 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
15775 (w32_cache_char_metrics): Use FONT_WIDTH.
15776
15777 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
15778
15779 2008-02-01 Jason Rumney <jasonr@gnu.org>
15780
15781 * w32font.c (w32font_open): Make lfHeight negative.
15782
15783 * w32fns.c (x_default_font_parameter): Use new style font name.
15784 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
15785
15786 2008-02-01 Jason Rumney <jasonr@gnu.org>
15787
15788 * w32font.c (QCsubranges): New symbol.
15789 (w32font_open, w32font_has_char): Get subranges from subproperty
15790 of extra.
15791 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
15792 (syms_of_w32font): Define :subranges symbol.
15793
15794 * font.c (font_put_extra): Expose externally.
15795
15796 * font.h (font_put_extra): Move declaration from font.c.
15797
15798 * font.c (Ffont_get): Use font driver to determine otf capability.
15799 (adjust_anchor): Check if driver defines anchor_point before using.
15800
15801 * w32font.c (w32font_open): Handle size, height and pixel_size better.
15802 (w32font_draw): Use options.
15803 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
15804 Fix detection of truetype fonts.
15805 (registry_to_w32_charset): Handle charsets other than iso8859-1
15806 expressed as lisp symbols.
15807 (w32_registry): Express charset as lisp symbol.
15808 (fill_in_logfont): Reverse pixel and point height logic.
15809 Don't set width here. Set quality to default.
15810
15811 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
15812 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
15813
15814 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
15815 Remove redundant loop and allocation.
15816
15817 * makefile.w32-in (font.o, w32font.o): New objects.
15818 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
15819 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
15820
15821 * xdisp.c (fill_composite_glyph_string): Make the first arg to
15822 STORE_XCHARB a valid l-value.
15823
15824 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
15825 calculations for non-Truetype fonts.
15826 (x_draw_glyph_string): Sync with xterm.c.
15827 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
15828 Remove redundant code.
15829 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
15830
15831 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
15832 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
15833
15834 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
15835 (x_to_w32_charset, w32_to_x_charset): Expose externally.
15836
15837 * w32font.c: New file for w32 font backend.
15838
15839 2008-02-01 Kenichi Handa <handa@m17n.org>
15840
15841 * term.c: Don't include "buffer.h" twice.
15842
15843 2008-02-01 Kenichi Handa <handa@m17n.org>
15844
15845 * character.c (Funibyte_string): New function.
15846 (syms_of_character): Defsubr it.
15847
15848 2008-02-01 Jason Rumney <jasonr@gnu.org>
15849
15850 * w32term.c [USE_FONT_BACKEND]:
15851 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
15852 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
15853 (x_draw_glyph_string, x_draw_glyph_string_foreground)
15854 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
15855 (x_free_frame_resources): Sync with xterm.c.
15856
15857 2008-02-01 Andreas Schwab <schwab@suse.de>
15858
15859 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
15860 char-table size.
15861
15862 2008-02-01 Kenichi Handa <handa@m17n.org>
15863
15864 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
15865
15866 2008-02-01 Kenichi Handa <handa@m17n.org>
15867
15868 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
15869 font_otf_gpos, add font_drive_otf.
15870
15871 * fontset.c (fontset_find_font): Pay attention to font size
15872 specified for a font.
15873 (reorder_font_vector): Check contents of font_def.
15874
15875 * font.c (struct otf_list): Delete it.
15876 (otf_list): Make it a lisp variable.
15877 (otf_open): Use lispy otf_list.
15878 (generate_otf_features): Rename from parse_gsub_gpos_spec.
15879 (check_otf_features): New function.
15880 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
15881 New functions.
15882 (font_drive_otf): New function merging font_otf_gsub and
15883 font_otf_gpos.
15884 (font_open_for_lface): New arg spec. Change argument order.
15885 (font_load_for_face): Adjust for the change of font_open_for_lface.
15886 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
15887 Ffont_otf_gpos.
15888 (syms_of_font): Staticpro otf_list. Delete defsubr of
15889 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
15890
15891 * xfaces.c (set_font_frame_param): Adjust for the change of
15892 font_open_for_lface.
15893
15894 * font.h (font_open_for_lface): Adjust prototype.
15895 (struct font_driver): Delete members otf_gsub and otf_gpos, add
15896 member otf_drive.
15897 (font_otf_gsub, font_otf_gpos): Delete externs.
15898 (font_drive_otf): Extern it.
15899
15900 2008-02-01 Kenichi Handa <handa@m17n.org>
15901
15902 * font.c (font_at): If the window W is not on a window system,
15903 return Qnil.
15904
15905 * coding.c (produce_chars, encode_coding): Don't call
15906 insert_from_gap if no characters to produce.
15907
15908 2008-02-01 Kenichi Handa <handa@m17n.org>
15909
15910 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
15911 Fclear_face_cache.
15912
15913 * xfaces.c (face_for_font): Check also face->font==font->font.font.
15914
15915 2008-02-01 Miles Bader <miles@gnu.org>
15916
15917 * emacs.c (main): Change default value of `enable_font_backend' to 1.
15918 Parse "--disable-font-backend" option.
15919 (standard_args): Add "--disable-font-backend" option.
15920
15921 2008-02-01 Kenichi Handa <handa@m17n.org>
15922
15923 * fontset.c (fontset_find_font): New function.
15924 (fontset_font): Use fontset_find_font.
15925 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
15926 Register the specified font for all Latin characters.
15927 (new_fontset_from_font): Register the specified font for all Latin
15928 characters.
15929 (dump_fontset): For a realized fontset, include the base fontset
15930 name in the returned vector.
15931
15932 2008-02-01 Kenichi Handa <handa@m17n.org>
15933
15934 * character.h (CHAR_STRING): Cast C to unsigned on calling
15935 char_string.
15936
15937 * character.c (char_string): Type of arg C changed to unsigned.
15938 Signal an error if C is an invalid character code.
15939
15940 * editfns.c (general_insert_function, Fchar_to_string):
15941 Use CHARACTERP, not INTEGERP.
15942
15943 2008-02-01 Kenichi Handa <handa@m17n.org>
15944
15945 * character.h (MIN_MULTIBYTE_LEADING_CODE)
15946 (MAX_MULTIBYTE_LEADING_CODE): New macros.
15947
15948 * regex.c (analyse_first): Fix for multibyte characters in "case
15949 charset:" and "case categoryspec:".
15950
15951 2008-02-01 Andreas Schwab <schwab@suse.de>
15952
15953 * Makefile.in (LIBES): Move standard libraries to the end.
15954
15955 2008-02-01 Kenichi Handa <handa@m17n.org>
15956
15957 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
15958 nonzero, don't shrink the buffer nextb.
15959
15960 * buffer.h (struct buffer_text): New member inhibit_shrinking.
15961
15962 * coding.c (coding_alloc_by_making_gap): New arg offset.
15963 (alloc_destination): Call coding_alloc_by_making_gap with the arg
15964 offset.
15965 (decode_coding_iso_2022): Update coding->safe_charsets.
15966 (decode_coding_gap): Temporarily set
15967 current_buffer->text->inhibit_shrinking to 1.
15968
15969 2008-02-01 Kenichi Handa <handa@m17n.org>
15970
15971 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
15972 indexing into elements of s->cmp and s->char2b.
15973
15974 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
15975
15976 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
15977
15978 2008-02-01 Kenichi Handa <handa@m17n.org>
15979
15980 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
15981 target_multibyte instead of multibyte.
15982 (re_match_2_internal): Call bcmp_translate with target_multibyte.
15983 (bcmp_translate): Change the argument name from multibyte to
15984 target_multibyte.
15985
15986 2008-02-01 Kenichi Handa <handa@m17n.org>
15987
15988 These changes are to compile a regexp into a pattern that can be
15989 used both for multibyte and unibyte targets.
15990
15991 * Makefile.in (search.o): Depend on charset.h.
15992
15993 * character.c (multibyte_char_to_unibyte_safe): New function.
15994
15995 * search.c: Include "charset.h".
15996 (compile_pattern_1): Delete argument multibyte. Don't set
15997 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
15998 (compile_pattern): Don't compare cp->buf.target_multibyte.
15999 Compare cp->buf.charset_unibyte.
16000 (compile_pattern): Set cp->buf.target_multibyte.
16001
16002 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
16003
16004 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
16005
16006 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
16007 multibyte. Change callers.
16008 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
16009 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
16010 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
16011 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
16012 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
16013 (regex_compile): Make the compiled pattern usable both for
16014 multibyte and unibyte targets.
16015 (analyse_first): Make the fastmap usable both for multibyte and
16016 unibyte targets.
16017 (TRANSLATE_VIA_MULTIBYTE): Delete.
16018 (re_match_2_internal): Pay attention to the case that the
16019 multibyteness of bufp and target may be different.
16020
16021 2008-02-01 Kenichi Handa <handa@m17n.org>
16022
16023 * xdisp.c (x_produce_glyphs): When a font is not found, make the
16024 empty box occupy at least one column width.
16025
16026 2008-02-01 Miles Bader <miles@gnu.org>
16027
16028 * Makefile.in: Remove redundant HAVE_XFT clause.
16029
16030 2008-02-01 Kenichi Handa <handa@m17n.org>
16031
16032 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
16033
16034 2008-02-01 Kenichi Handa <handa@m17n.org>
16035
16036 * fontset.c (Finternal_char_font): Fix for the case of POSITION
16037 being nil.
16038
16039 2008-02-01 Kenichi Handa <handa@m17n.org>
16040
16041 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
16042
16043 2008-02-01 Kenichi Handa <handa@m17n.org>
16044
16045 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
16046
16047 2008-02-01 Kenichi Handa <handa@m17n.org>
16048
16049 * search.c (simple_search): Fix previous change.
16050
16051 2008-02-01 Kenichi Handa <handa@m17n.org>
16052
16053 * xftfont.c (ftfont_font_format): Extern declaration.
16054
16055 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
16056
16057 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
16058 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
16059
16060 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
16061 (ftfont_font_format): Fix previous change.
16062
16063 * font.h (Ffont_xlfd_name): EXFUN it.
16064
16065 * font.c (font_parse_xlfd): Fix the array size of `f'.
16066 (register_font_driver): Use EQ to compare driver->type.
16067
16068 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
16069 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
16070 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
16071
16072 2008-02-01 Kenichi Handa <handa@m17n.org>
16073
16074 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
16075 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
16076
16077 2008-02-01 Kenichi Handa <handa@m17n.org>
16078
16079 * xfont.c (xfont_open): Set font->format.
16080
16081 * xftfont.c (xftfont_open): Set font->format.
16082
16083 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
16084 (ftfont_list): Include FC_FONTFORMAT in FcObject.
16085 (ftfont_open): Set font->format.
16086 (ftfont_font_format): New function.
16087
16088 * font.h (struct font): New member format.
16089
16090 * font.c (Qopentype): New variable.
16091 (syms_of_font): Defsym it.
16092 (Fquery_font): Change the format of the last element of the return
16093 value.
16094
16095 2008-02-01 Kenichi Handa <handa@m17n.org>
16096
16097 * xfns.c (xic_create_xfontset): Try the default fontset name as a
16098 last resort.
16099
16100 2008-02-01 Kenichi Handa <handa@m17n.org>
16101
16102 * coding.c (detect_coding_charset): Fix detection of multi-byte
16103 charset.
16104
16105 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
16106
16107 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
16108
16109 2008-02-01 Kenichi Handa <handa@m17n.org>
16110
16111 * xdisp.c (get_next_display_element): Set it->face_id for the
16112 first component of a composition.
16113 (x_produce_glyphs): Check if the font is changed or not for composition.
16114
16115 2008-02-01 Kenichi Handa <handa@m17n.org>
16116
16117 * fontset.c (Qlatin): New variable.
16118 (syms_of_fontset): Define it as a lisp symbol.
16119 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
16120
16121 2008-02-01 Kenichi Handa <handa@m17n.org>
16122
16123 * font.c (font_unparse_fcname): Pay attention to the case that
16124 some of font property is a null string.
16125
16126 2008-02-01 Kenichi Handa <handa@m17n.org>
16127
16128 * term.c: Include "composite.h".
16129 (encode_terminal_code): Output all components of composition.
16130 Check the size of encode_terminal_src.
16131 (produce_glyphs): For composition, call produce_composite_glyph.
16132 (append_composite_glyph, produce_composite_glyph): New functions.
16133
16134 * xdisp.c (x_produce_glyphs): In handling composition, if a font
16135 is not found, get font_info from the current ascii face.
16136
16137 2008-02-01 Kenichi Handa <handa@m17n.org>
16138
16139 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
16140 buffer-file-name to Qnil before calling insert_from_buffer.
16141
16142 * font.c (font_unparse_fcname): Pay attention to the case that
16143 foundry is a null string.
16144
16145 2008-02-01 Kenichi Handa <handa@m17n.org>
16146
16147 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
16148
16149 * font.c (Qunicode_sip): New variable.
16150 (syms_of_font): Declare it as a Lisp symbol.
16151
16152 * font.h (Qunicode_sip): Extern it.
16153
16154 2008-02-01 Kenichi Handa <handa@m17n.org>
16155
16156 * composite.c (get_composition_id): Pay attention to TAB component.
16157
16158 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
16159 TAB. Adjust for the change of s->char2b which always points to
16160 the first element of allocated memory.
16161
16162 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
16163
16164 * xdisp.c (handle_composition_prop): Set it->c to the first
16165 non-TAB component.
16166 (fill_composite_glyph_string): Change argument.
16167 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
16168 (x_produce_glyphs): Fix handling of left/right padding.
16169
16170 2008-02-01 Kenichi Handa <handa@m17n.org>
16171
16172 * coding.c (detect_coding_system): Fix for handling off
16173 inhibit_iso_escape_detection. Fix for the case that no coding
16174 system is defined for a specific coding category.
16175
16176 2008-02-01 Kenichi Handa <handa@m17n.org>
16177
16178 * font.c (font_matching_entity): Delete unused local var.
16179
16180 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
16181 opening a font.
16182
16183 * fileio.c (Finsert_file_contents): On recovering a file, assume
16184 Unix-like eol.
16185 (choose_write_coding_system): On auto-saving a file, force
16186 Unix-like eol.
16187
16188 * coding.c (setup_coding_system): Fix setting of
16189 coding->common_flags based on eol_type.
16190 (coding_inherit_eol_type): If PARENT is not nil, be sure to
16191 inherit from it.
16192
16193 2008-02-01 Kenichi Handa <handa@m17n.org>
16194
16195 * alloc.c (NSTATICS): Increas to 0x600.
16196
16197 2008-02-01 Kenichi Handa <handa@m17n.org>
16198
16199 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
16200 (ftfont_list): Don't check :name property.
16201 (ftfont_match): New function.
16202 (ftfont_pattern_entity): If the pattern doesn't contain
16203 FC_SPACING, don't assume FC_MONO.
16204
16205 * font.h (struct font_driver): New member `match'.
16206 (font_update_drivers): Adjust prototype.
16207
16208 * font.c (font_parse_fcname, font_parse_name): Don't change :name
16209 property of FONT.
16210 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
16211 them unconditionally.
16212 (font_matching_entity): New function.
16213 (font_open_by_name): Try font_matching_entity if exact match is
16214 not found.
16215 (font_update_drivers): Delete the arg FONT. Return a list of
16216 actually used backends. Don't free faces, font caches here.
16217 Don't store data in frame parameters. Don't call x_set_font.
16218 (Ffont_spec): Store :name property as is.
16219 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
16220 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
16221 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
16222 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
16223 Call font->driver->otf_gsub instead of font_otf_gsub.
16224
16225 * frame.c (x_set_font_backend): Do more works that were done in
16226 font_update_drivers before.
16227
16228 * xfont.c (xfont_match): New function.
16229 (xfont_driver): Set xfont_driver.match to xfont_match.
16230 (xfont_draw): Set font in GC if necessary.
16231
16232 * ftxfont.c (ftxfont_match): New function.
16233 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
16234
16235 * xftfont.c (xftfont_match): New function.
16236 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
16237
16238 2008-02-01 Kenichi Handa <handa@m17n.org>
16239
16240 * font.h (struct font): New member scalable.
16241 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
16242 (font_otf_gsub): Adjust prototype.
16243
16244 * font.c (font_otf_capability): Fix handling of the default langsys.
16245 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
16246 Check the contents of SPEC.
16247 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
16248 (check_gstring): New function.
16249 (REPLACEMENT_CHARACTER): New macro.
16250 (font_otf_gsub): New arg alternate_subst. Be sure to set all
16251 glyph codes of GSTRING.
16252 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
16253 (font_prepare_composition): Set cmp->glyph_len.
16254 (font_open_entity): Set font->scalable.
16255 (Ffont_get): Handle :otf property.
16256 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
16257 functions.
16258 (Fquery_font): Use font->font.full_name.
16259 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
16260 Sfont_otf_alternates.
16261
16262 * ftfont.c (ftfont_open): Set font->font.full_name and
16263 font->font.name properly. Fix calculation of font->font.height
16264 and font->min_width.
16265
16266 * ftxfont.c (ftxfont_create_gcs): New function.
16267 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
16268 (ftxfont_draw_backgrond): Fix filling region.
16269 (ftxfont_default_fid): New function.
16270 (ftxfont_open): Set xfont->fid to the return value of
16271 ftxfont_default_fid.
16272 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
16273 (ftxfont_done_face): Free only GCs that are created by
16274 ftxfont_create_gcs.
16275 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
16276
16277 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
16278 Clip to src->width, etc (not src->clip_XXX).
16279
16280 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
16281 FontBackend frame parameter.
16282
16283 2008-02-01 Kenichi Handa <handa@m17n.org>
16284
16285 * font.h (struct font_driver_list): New member `on'.
16286 (Fclear_font_cache): EXFUN it.
16287 (font_update_drivers): Extern it.
16288
16289 * font.c (font_unparse_fcname): Fix typo (swidth->width).
16290 (font_list_entities): Check driver_list->on.
16291 (register_font_driver): Initalize `on' member to 0.
16292 (font_update_drivers): New function.
16293 (Fclear_font_cache): Check driver_list->on.
16294
16295 * frame.h (Qfont_backend): Extern it.
16296 (x_set_font_backend): Extern it.
16297
16298 * frame.c (Qfont_backend): New variable.
16299 (frame_parms): New element for font-backend.
16300 (x_set_font_backend): New function.
16301
16302 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
16303 FontBackend frame parameter.
16304 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
16305 x_set_font_backend.
16306
16307 * xfont.c (xfont_list): Don't try listing by :name property if the
16308 name is not for XLFD.
16309
16310 2008-02-01 Kenichi Handa <handa@m17n.org>
16311
16312 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
16313 (LGLYPH_SET_TO): New macros.
16314 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
16315 element of G is vector or not.
16316 (font_at): Extern it.
16317
16318 * font.c: Include window.h.
16319 (font_lispy_object): New function.
16320 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
16321 end of valid glyph.
16322 (font_close_object): Fix getting (struct font *).
16323 (font_at): New function.
16324 (Ffont_get): If FONT is a font-object, get entity from it.
16325 (Ffont_make_gstring): Initialize elements of glyphs with nil.
16326 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
16327 range check.
16328 (Ffont_at): New function.
16329 (syms_of_font): Defsubr Sfont_at.
16330
16331 * xdisp.c (it_props): Move the entry for Qauto_composed to just
16332 before the entry for Qcomposition.
16333 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
16334 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
16335 the font in gstring.
16336 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
16337 LGLYPH_FORM (g) to detect the end of valid glyph.
16338 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
16339 we are composing with gstring.
16340
16341 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
16342 Check if adjustment is vector or not.
16343
16344 * Makefile.in (font.o): Make it depends on window.h.
16345
16346 2008-02-01 Kenichi Handa <handa@m17n.org>
16347
16348 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
16349 adjustment is vector or not.
16350
16351 2008-02-01 Miles Bader <miles@gnu.org>
16352
16353 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
16354
16355 2008-02-01 Kenichi Handa <handa@m17n.org>
16356
16357 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
16358 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
16359 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
16360
16361 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
16362 (DEVICE_DELTA): Fix typo.
16363 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
16364 LGLYPH format.
16365
16366 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
16367 the change of LGLYPH format.
16368
16369 2008-02-01 Kenichi Handa <handa@m17n.org>
16370
16371 * ftfont.c (ftfont_list): Fix typo.
16372 (ftfont_build_basic_charsets): Don't include letters with diacritics.
16373
16374 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
16375
16376 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
16377
16378 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
16379 xftface_info is non-NULL.
16380
16381 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
16382
16383 * ftfont.c (ftfont_list): Move misplaced #endif.
16384
16385 2008-02-01 Kenichi Handa <handa@m17n.org>
16386
16387 * ftfont.c (ftfont_list): Pay attention to the case that
16388 FC_CAPABILITY is not defined.
16389
16390 2008-02-01 Kenichi Handa <handa@m17n.org>
16391
16392 * xftfont.c (xftfont_open): Set charset related members to -1.
16393
16394 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
16395 QCname.
16396 (ftfont_open): Set charset related members to -1.
16397
16398 * fontset.c (Votf_script_alist): New variable.
16399 (syms_of_fontset): Initialize it.
16400 (fontset_font): Delete unused variable.
16401
16402 * fontset.h (Votf_script_alist): Extern it.
16403
16404 * font.c (font_find_for_lface): Optimize code.
16405
16406 * font.h (font_close_object, font_merge_old_spec): Extern them.
16407
16408 2008-02-01 Kenichi Handa <handa@m17n.org>
16409
16410 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
16411 (syms_of_font): Initialize them.
16412 (font_pixel_size): Allow float value in dpi.
16413 (font_prop_validate_type): Delete.
16414 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
16415 Change caller.
16416 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
16417 (font_prop_validate_extra): Delete.
16418 (font_prop_validate_spacing): New function.
16419 (font_property_table): Add elements for all known properties.
16420 (get_font_prop_index): Rename from check_font_prop_name. New
16421 argument FROM. Change caller.
16422 (font_prop_validate): Validate all known properties.
16423 (font_put_extra): Delete argument force. Change caller.
16424 (font_expand_wildcards): Make it static. Fix the way of shrinking
16425 the possible range.
16426 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
16427 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
16428 Change caller.
16429 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
16430 (font_parse_fcname): Delete argument merge. Fix parsing of point
16431 size. Don't validate properties values here. Change caller.
16432 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
16433 (font_open_by_name): Delete unused variable.
16434 (Ffont_spec): Likewise. Validate property values.
16435 (Ffont_match_p): New function.
16436
16437 * font.h (QCscalable): Extern it.
16438 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
16439
16440 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
16441
16442 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
16443 (xfont_list_pattern): New function.
16444 (xfont_list): Use xfont_list_pattern.
16445
16446 2008-02-01 Kenichi Handa <handa@m17n.org>
16447
16448 * font.h (Flist_fonts): EXFUN it.
16449
16450 2008-02-01 Jason Rumney <jasonr@gnu.org>
16451
16452 * w32term.c (w32_initialize): Add back smoothing_type and
16453 smoothing_enabled definitions.
16454
16455 2008-02-01 Kenichi Handa <handa@m17n.org>
16456
16457 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
16458 s->face->font on determining underline position.
16459
16460 2008-02-01 Kenichi Handa <handa@m17n.org>
16461
16462 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
16463 (font_has_char): Accept font-object too.
16464 (font_find_for_lface): Try at first with a size specified in face.
16465
16466 2008-02-01 Kenichi Handa <handa@m17n.org>
16467
16468 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
16469 font_open_by_name.
16470
16471 2008-02-01 Kenichi Handa <handa@m17n.org>
16472
16473 * font.h (QCspacing, QCdpi): Extern them.
16474 (enum font_spacing): New enum.
16475 (FONT_PIXEL_SIZE_QUANTUM): New macro.
16476
16477 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
16478 (QCspacing, QCdpi): New variables.
16479 (syms_of_font): Initialize them.
16480 (font_pixel_size): New function.
16481 (font_put_extra): New function.
16482 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
16483 in FONT_EXTRA.
16484 (font_parse_fcname): Handle enumerated values (e.g. bold).
16485 Fix handling font size. Add QCname property that contains only
16486 unknown properties.
16487 (font_score): Change argument. Change caller. Pay attention to
16488 FONT_PIXEL_SIZE_QUANTUM.
16489 (font_sort_entites, font_list_entities, font_find_for_lface)
16490 (font_open_for_lface, font_open_by_name): Fix handling of font size.
16491 (Ffont_spec): Add QCname property that contains only unknown properties.
16492
16493 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
16494 include weight in listing pattern, instead check weight of each
16495 listed font. Don't include scalable in pattern. Pay attention to
16496 FONT_PIXEL_SIZE_QUANTUM.
16497
16498 2008-02-01 Kenichi Handa <handa@m17n.org>
16499
16500 * font.c (font_parse_fcname): Fix parsing of point-size.
16501 (font_unparse_fcname): Produce symbolic names for style properties.
16502 (font_list_entities): Handle float size correctly.
16503 (font_open_by_name): Prefer `normal' property values if the name
16504 doesn't specify them.
16505
16506 * fontset.c (Finternal_char_font): Use font_get_name, not
16507 Ffont_xlfd_name.
16508
16509 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
16510 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
16511 pattern. Don't force scalable.
16512
16513 * xftfont.c (xftfont_open): For generating a name, start from
16514 96-byte buffer.
16515
16516 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
16517
16518 * frame.h (x_new_fontset2): Fix prototype.
16519
16520 2008-02-01 Kenichi Handa <handa@m17n.org>
16521
16522 * font.h (struct font_driver): Delete member parse_name.
16523 (font_match_p, font_get_spec, font_parse_fcname)
16524 (font_unparse_fcname): Extern them.
16525 (font_get_name): Adjust prototype.
16526
16527 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
16528 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
16529 (font_expand_wildcards): Fix handling ENCODING field. Avoid
16530 unnecessary checks for weight, slant, and swidth.
16531 (font_parse_fcname): New function.
16532 (font_unparse_fcname): New function.
16533 (font_parse_name): New function.
16534 (font_match_p): New function.
16535 (font_get_name): Change return value to Lisp string.
16536 (font_get_spec): New function.
16537 (Qunspecified, Qignore_defface): Don't extern them.
16538 (font_find_for_lface): Assume that LFACE is fully specified.
16539 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
16540 object, use it for FACE.
16541 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
16542 driver->parse_name.
16543 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
16544
16545 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
16546 prototype.
16547
16548 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
16549 argument F. Don't call Fnew_fontset. Instead, directly call
16550 make_fontset.
16551
16552 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
16553
16554 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
16555 of x_new_fontset2.
16556
16557 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
16558 (Qsans__serif): New variables.
16559 (ftfont_generic_family_list): New variable.
16560 (syms_of_ftfont): Initialize the above variables.
16561 (ftfont_pattern_entity): Delete argument NAME.
16562 (ftfont_list_generic_family): New function.
16563 (ftfont_parse_name): Delete this function.
16564 (ftfont_list): Try generic family only when FcFontList found no font.
16565 (ftfont_list_family): Fix args to FcObjectSetBuild.
16566
16567 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
16568 object in attrs[LFACE_FONT_INDEX].
16569 (set_lface_from_font_name): Cancel all changes for font-backend.
16570 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
16571 function.
16572 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
16573 font object in QCfont attribute.
16574 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
16575 (realize_default_face) [USE_FONT_BACKEND]: Call
16576 set_lface_from_font_and_fontset.
16577
16578 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
16579 "fixed", and signal error here if no suitable font was found.
16580
16581 * xfont.c (xfont_parse_name): Delete this function.
16582
16583 * xftfont.c (xftfont_open): Change coding style of error
16584 handling. Generate fontconfig's fontname pattern.
16585
16586 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
16587 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
16588
16589 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
16590 Both args FONTSET and FONT_OBJECT must be existing ones.
16591
16592 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16593
16594 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
16595
16596 2008-02-01 Kenichi Handa <handa@m17n.org>
16597
16598 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
16599
16600 * font.h (struct font): Fix typo.
16601
16602 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
16603 XLFD_XXX_INDEX.
16604 (enum xlfd_field_mask): New enum.
16605 (intern_font_field): Changed argument. Change caller. If digits
16606 are followed by non-digits, return a symbol.
16607 (font_expand_wildcards): New function.
16608 (font_parse_xlfd): Fix wildcard handling.
16609 (Ffont_spec): If :name is specified, reflect the info in the other
16610 properties.
16611
16612 * ftfont.c (ftfont_pattern_entity): Fix typo.
16613 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
16614 locale.
16615
16616 2008-02-01 Kenichi Handa <handa@m17n.org>
16617
16618 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
16619
16620 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
16621 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
16622 registry doesn't specify encoding part.
16623 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
16624 (font_open_by_name): At first try parsing the name.
16625 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
16626 as Lisp symbols.
16627
16628 * fontset.c (reorder_font_vector): Pay attention to the case that
16629 the 3rd element of font_def is nil.
16630 (fontset_font): For the default fontset, append one more fontset
16631 elements for a script-based font specification. Don't add script
16632 attribute on finding a font.
16633 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
16634 font name.
16635 (fontset_ascii_font): If a font can't be opened, return nil.
16636
16637 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
16638 (ftfont_pattern_entity): New function.
16639 (ftfont_get_cache): Assume that freetype_font_cache is already
16640 initialized.
16641 (ftfont_list): Handle the case that a file is specified in font
16642 name. Use ftfont_pattern_entity to generate entities.
16643 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
16644 (syms_of_ftfont): Initialize freetype_font_cache.
16645
16646 * xftfont.c (xftfont_open): Make the font name fontconfig's
16647 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
16648 (xftfont_close): Free font->font.name if not NULL.
16649
16650 * xfont.c (xfont_list): If script is specified for a font, return
16651 null_vector.
16652 (xfont_list_family): Declare argument type.
16653
16654 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
16655 name, set LFACE_FONT (lface) to nil.
16656
16657 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
16658 return Qnil.
16659
16660 2008-02-01 Kenichi Handa <handa@m17n.org>
16661
16662 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
16663 (standard_args): Add "-enable-font-backend".
16664
16665 2008-02-01 Kenichi Handa <handa@m17n.org>
16666
16667 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
16668 (struct xftdraw_list, xftdraw_list): Delete them.
16669 (register_xftdraw, check_xftdraw): Delete them.
16670 (xftfont_prepare_face): Don't call register_xftdraw.
16671 (xftfont_done_face): Don't call check_xftdraw.
16672 (xftfont_draw): Get background color only when with_background is
16673 nonzero.
16674
16675 * xfont.c (xfont_encode_char): Fix calculation of char2b.
16676
16677 2008-02-01 Kenichi Handa <handa@m17n.org>
16678
16679 These changes are for the new font handling codes.
16680
16681 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
16682 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
16683 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
16684 (FONTSRC, FONTOBJ): New variables.
16685 (obj): Add $(FONTOBJ).
16686 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
16687 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
16688 @LIBOTF_LIBS@.
16689 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
16690 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
16691
16692 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
16693
16694 * character.h (Vscript_representative_chars): Extern it.
16695
16696 * character.c (Vscript_representative_chars): New variable.
16697 (syms_of_character): Declare it as a Lisp variable.
16698
16699 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
16700 enable_font_backend is nonzero, accept the composition method
16701 COMPOSITION_WITH_GLYPH_STRING.
16702
16703 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
16704 enumeration COMPOSITION_WITH_GLYPH_STRING.
16705
16706 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
16707 members clip_x, clip_y, clip_width, and clip_height.
16708 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
16709
16710 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
16711 --enable-font-backend. Call syms_of_font.
16712
16713 * fns.c (assoc_no_quit): New function.
16714
16715 * fontset.h (FONT_INFO_FROM_FACE): New macro.
16716 (face_for_font, new_fontset_from_font)
16717 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
16718
16719 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
16720 (fontset_font, fontset_ascii, face_for_char)
16721 (make_fontset_for_ascii_face, Ffont_info)
16722 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
16723 is nonzero, use font-backend mechanism.
16724 (find_font_encoding): Make it non-static.
16725 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
16726 New functions.
16727
16728 * frame.h (struct frame): New members resx and resy.
16729 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
16730 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
16731
16732 * frame.c [USE_FONT_BACKEND]: Include "font.h".
16733 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
16734
16735 * lisp.h (assoc_no_quit): Extern it.
16736
16737 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
16738 Through out the file, use FONT_INFO_FROM_FACE instead of
16739 FONT_INFO_FROM_ID, use get_per_char_metric instead of
16740 rif->per_char_metric.
16741 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
16742 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
16743 (get_glyph_face_and_encoding, fill_composite_glyph_string)
16744 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
16745 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
16746 nonzero, use font-backend mechanism.
16747 (get_per_char_metric): New function.
16748
16749 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
16750 (set_lface_from_font_name)
16751 (set_font_frame_param, free_realized_face)
16752 (prepare_face_for_display, clear_face_gcs)
16753 (Finternal_set_font_selection_order, realize_x_face)
16754 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
16755 font-backend mechanism.
16756 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
16757 (load_face_font) [USE_FONT_BACKEND]: Abort.
16758 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
16759 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
16760
16761 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
16762 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
16763 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
16764 nonzero, register all available font drivers. Call
16765 x_default_font_parameter for deciding a font.
16766 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
16767
16768 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
16769 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
16770 (x_set_glyph_string_clipping_exactly)
16771 (x_compute_glyph_string_overhangs)
16772 (x_draw_glyph_string_foreground)
16773 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
16774 (x_free_frame_resources) [USE_FONT_BACKEND]: If
16775 enable_font_backend is nonzero, use font-backend mechanism.
16776 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
16777
16778 2008-02-01 Kenichi Handa <handa@m17n.org>
16779
16780 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
16781 system_eol_type.
16782 (syms_of_coding): Initialize system_eol_type.
16783
16784 * process.c (Fset_process_coding_system): Inherit system's eol
16785 format if necessary.
16786
16787 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16788
16789 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
16790
16791 2008-02-01 Kenichi Handa <handa@m17n.org>
16792
16793 * coding.c (decode_eol): Pay attention to buffer relocation in
16794 del_range_2.
16795 (decode_coding): Call decode_eol before restoring undo_list.
16796
16797 2008-02-01 Kenichi Handa <handa@m17n.org>
16798
16799 * charset.c (Fdefine_charset_internal): Fix setting of
16800 emacs_mule_bytes.
16801
16802 2008-02-01 Kenichi Handa <handa@m17n.org>
16803
16804 * keyboard.c (read_char): Check if C is a character or not before
16805 looking up Vkeyboard_translate_table.
16806
16807 2008-02-01 Kenichi Handa <handa@m17n.org>
16808
16809 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
16810 condition to terminate the loop.
16811
16812 2008-02-01 Kenichi Handa <handa@m17n.org>
16813
16814 * coding.c (produce_composition): Compare charbuf[i] instead of
16815 args[i] against 0.
16816 (Fterminal_coding_system): Use EQ to compare Lisp objects.
16817
16818 2008-02-01 Kenichi Handa <handa@m17n.org>
16819
16820 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
16821 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
16822 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
16823 detect_coding.
16824 (emacs_mule_char): Handle old style (Emacs 20) component character
16825 of a composition.
16826 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
16827 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
16828 composition rule.
16829 (decode_coding_emacs_mule): Handle invalid bytes correctly.
16830
16831 2008-02-01 Kenichi Handa <handa@m17n.org>
16832
16833 * coding.c (encode_coding_ccl): Allocate destination dynamically
16834 when necessary.
16835
16836 2008-02-01 Kenichi Handa <handa@m17n.org>
16837
16838 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
16839 the loop. When quitted, show a proper error message.
16840
16841 2008-02-01 Kenichi Handa <handa@m17n.org>
16842
16843 * xterm.c (x_set_glyph_string_clipping_exactly): Set
16844 src->clip_head and src->clip_tail temporarily instead of src->hl.
16845
16846 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
16847 character sequence.
16848 (Fccl_execute_on_string): Use ASET, not XSET.
16849
16850 2008-02-01 Kenichi Handa <handa@m17n.org>
16851
16852 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
16853
16854 2008-02-01 Kenichi Handa <handa@m17n.org>
16855
16856 * coding.c (decode_coding): Fix the condition of terminating the
16857 decoding loop.
16858
16859 2008-02-01 Kenichi Handa <handa@m17n.org>
16860
16861 * data.c (Faset): On setting a character bigger than 255 in a
16862 unibyte string, signal an error instead of make the string multibyte.
16863
16864 2008-02-01 Kenichi Handa <handa@m17n.org>
16865
16866 * charset.c (map_charset_chars): Fix for ascii-compatible charset
16867 made by a mapping table.
16868
16869 2008-02-01 Kenichi Handa <handa@m17n.org>
16870
16871 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
16872 not.
16873 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
16874 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
16875
16876 * xterm.c (x_draw_composite_glyph_string_foreground): Check
16877 s->face is NULL or not.
16878
16879 2008-02-01 Kenichi Handa <handa@m17n.org>
16880
16881 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
16882 (x_draw_glyph_string): Fix drawing of right_overhang and
16883 left_overhang around/on cursor.
16884
16885 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
16886
16887 2008-02-01 Kenichi Handa <handa@m17n.org>
16888
16889 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
16890
16891 2008-02-01 Kenichi Handa <handa@m17n.org>
16892
16893 * coding.c (Fdefine_coding_system_internal)
16894 (Fdefine_coding_system_alias): Avoid a duplicated element in
16895 Vcoding_system_alist.
16896
16897 2008-02-01 Kenichi Handa <handa@m17n.org>
16898
16899 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
16900
16901 * coding.c (Qcoding_system_define_form): New variable.
16902 (syms_of_coding): Intern and staticpro it.
16903 (Fcoding_system_p): Check Qcoding_system_define_form.
16904 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
16905
16906 * coding.h (CODING_SYSTEM_P): If ID is not available, call
16907 Fcoding_system_p.
16908 (CHECK_CODING_SYSTEM): If ID is not available, call
16909 Fcheck_coding_system.
16910 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
16911 Try also Fcheck_coding_system.
16912
16913 2008-02-01 Kenichi Handa <handa@m17n.org>
16914
16915 * coding.c (code_conversion_restore): GCPRO arg.
16916
16917 2008-02-01 Kenichi Handa <handa@m17n.org>
16918
16919 * character.c (lisp_string_width): Check multibyteness of STRING.
16920
16921 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16922
16923 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
16924 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
16925 (decode_mac_font_name): Use decode_coding_c_string instead of
16926 decode_coding.
16927 (x_load_font): Initialize fontp->fontset to -1. Set
16928 fontp->encoding_type.
16929
16930 2008-02-01 Kenichi Handa <handa@m17n.org>
16931
16932 * search.c (search_buffer): Give up BM search on case-fold-search
16933 if one of a target character has a case-equivalence of different
16934 byte length even if that target charcter is an ASCII.
16935 (simple_search): Fix calculation of byte length of matched text.
16936 (boyer_moore): Fix handling of case-equivalent multibyte characters.
16937
16938 2008-02-01 Kenichi Handa <handa@m17n.org>
16939
16940 * coding.c (decode_coding): Fix handling of invalid bytes.
16941
16942 2008-02-01 Kenichi Handa <handa@m17n.org>
16943
16944 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
16945 Unicode characters.
16946
16947 2008-02-01 Kenichi Handa <handa@m17n.org>
16948
16949 * coding.c (encode_coding_object): If a pre-write-conversion
16950 function makes a new buffer, kill it.
16951
16952 2008-02-01 Kenichi Handa <handa@m17n.org>
16953
16954 * coding.c (QCascii_compatible_p): New variable.
16955 (syms_of_coding): Initialize it.
16956 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
16957 calling string_char.
16958 (record_conversion_result): Add `default:' case.
16959 (coding_charset_list): Delete unused variable `coding_type'.
16960 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
16961 property in the plist of the coding system.
16962 (Fcoding_system_put): Check QCascii_compatible_p.
16963
16964 2008-02-01 Miles Bader <miles@gnu.org>
16965
16966 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
16967 removed calculation of frame `f', as it's now used.
16968
16969 2008-02-01 Kenichi Handa <handa@m17n.org>
16970
16971 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
16972 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
16973 (UNIDATA): New variable.
16974 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
16975 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
16976 $(RUN_TEMACS) unconditionally.
16977
16978 2008-02-01 Kenichi Handa <handa@m17n.org>
16979
16980 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
16981 (admindir): New variable.
16982 ($(lispsource)international/charprop.el): New target.
16983
16984 2008-02-01 Miles Bader <miles@gnu.org>
16985
16986 * character.c (chars-in-region): Remove obsolete function.
16987 (syms_of_character): Remove its initialization.
16988
16989 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
16990
16991 * w32select.c (validate_coding_system)
16992 (setup_windows_coding_system): New functions.
16993 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
16994 setup_windows_coding_system.
16995 (setup_config, Fw32_get_clipboard_data): Use
16996 validate_coding_system.
16997 (Fx_selection_exists): Move call to setup_config to a place
16998 where signals are allowed.
16999
17000 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
17001 (Fcheck_coding_system): Add declarations.
17002
17003 2008-02-01 Kenichi Handa <handa@m17n.org>
17004
17005 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
17006
17007 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17008
17009 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
17010 string as the second argument for x_new_fontset.
17011
17012 2008-02-01 Kenichi Handa <handa@m17n.org>
17013
17014 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
17015 (encode_coding_object): Use safe_call instead of call2.
17016
17017 2008-02-01 Kenichi Handa <handa@m17n.org>
17018
17019 * fontset.c (Fset_fontset_font): Check family element of a given vector.
17020
17021 * Makefile.in (lisp): Include charprop.el.
17022
17023 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17024
17025 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
17026 Not sure if it's unnecessary.
17027
17028 2008-02-01 Steven Tamm <steventamm@mac.com>
17029
17030 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
17031 some possibly unnecessary fontset checking code that crashed
17032 when creating a new frame.
17033
17034 2008-02-01 Kenichi Handa <handa@m17n.org>
17035
17036 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
17037 lookup_face.
17038
17039 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
17040
17041 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
17042
17043 2008-02-01 Kenichi Handa <handa@m17n.org>
17044
17045 * coding.c: Cancel the change done in HEAD on 2008-02-01.
17046 (coding_charset_list): New function.
17047
17048 * coding.h (coding_charset_list): Extern it.
17049
17050 2008-02-01 Kenichi Handa <handa@m17n.org>
17051
17052 * fontset.c (Fset_fontset_font): Call find_font_encoding with
17053 concatenation of family and registry.
17054
17055 2008-02-01 Kenichi Handa <handa@m17n.org>
17056
17057 * character.h (BYTE8_STRING): Fix typo.
17058
17059 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
17060 string to multibyte (sync to HEAD).
17061
17062 * casefiddle.c (casify_region): Handle changes in byte-length
17063 using replace_range_2 (sync to HEAD).
17064
17065 2008-02-01 Andreas Schwab <schwab@suse.de>
17066
17067 * chartab.c (map_char_table): GCPRO table and arg.
17068
17069 2008-02-01 Kenichi Handa <handa@m17n.org>
17070
17071 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
17072 already at limit.
17073
17074 2008-02-01 Kenichi Handa <handa@m17n.org>
17075
17076 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
17077 instead of fast_c_string_match_ignore_case.
17078 (find_font_encoding): Change argument to Lisp_Object. Use
17079 fast_string_match_ignore_case instead of
17080 fast_c_string_match_ignore_case. Change caller.
17081
17082 2008-02-01 Kenichi Handa <handa@m17n.org>
17083
17084 * xdisp.c (get_next_display_element): In unibyte case, decide to
17085 display in octal form by checking a character by
17086 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
17087
17088 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
17089
17090 * character.c (unibyte_has_multibyte_table): New variable.
17091
17092 * character.h (unibyte_has_multibyte_table): Extern it.
17093 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
17094
17095 2008-02-01 Kenichi Handa <handa@m17n.org>
17096
17097 * coding.c (encode_coding_iso_2022): Fix handling of charset
17098 annotation.
17099
17100 2008-02-01 Kenichi Handa <handa@m17n.org>
17101
17102 * coding.c (setup_coding_system): If coding_system is nil, use
17103 Qundecided.
17104 (Fterminal_coding_system): Return nil if terminal coding system is
17105 `undecided'.
17106 (syms_of_coding): Define coding-system `undecided' here. Setup
17107 terminal_coding as `undecided'.
17108
17109 2008-02-01 Kenichi Handa <handa@m17n.org>
17110
17111 * xdisp.c (message_dolog, set_message_1): Call
17112 unibyte_char_to_multibyte with arg type int.
17113
17114 * lread.c (read1): Fix reading of a char-table.
17115
17116 * print.c (print_object): Include sub char-table in circularities
17117 detection.
17118
17119 2008-02-01 Kenichi Handa <handa@m17n.org>
17120
17121 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
17122 Append the found sequences in car of ARGS instead of prepending.
17123
17124 2008-02-01 Kenichi Handa <handa@m17n.org>
17125
17126 * fileio.c (report_file_error): Make a unibyte string from
17127 strerror (errorno).
17128 (Fsubstitute_in_file_name): Fix the arg to
17129 unibyte_char_to_multibyte. It is evaluated twice.
17130
17131 2008-02-01 Kenichi Handa <handa@m17n.org>
17132
17133 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
17134
17135 2008-02-01 Kenichi Handa <handa@m17n.org>
17136
17137 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
17138 BOM is not found.
17139 (detect_coding, detect_coding_system): Optimization for ISO-2022
17140 when no 8-bit data is found.
17141
17142 2008-02-01 Jason Rumney <jasonr@gnu.org>
17143
17144 * w32fns.c (x_to_w32_font): Update to use new coding struct.
17145
17146 2008-02-01 Kenichi Handa <handa@m17n.org>
17147
17148 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
17149 CHARS.
17150
17151 2008-02-01 Steven Tamm <steventamm@mac.com>
17152
17153 * macterm.c (mac_encode_char): Add charset argument and update
17154 to use encoding_type.
17155 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
17156 switch to pure fontset.
17157 (decode_mac_font_name): Temporarily remove decoding.
17158 (x_font_name_to_mac_font_name): Temporarily remove encoding.
17159 (x_load_font): Temporarily remove encoding.
17160
17161 2008-02-01 Kenichi Handa <handa@m17n.org>
17162
17163 * xfaces.c (Fface_font): If frame is not on a window system,
17164 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
17165 refer to face->font.
17166 (split_font_name_into_vector, build_font_name_from_vector)
17167 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
17168 when HAVE_WINDOW_SYSTEM is defined.
17169
17170 2008-02-01 Kenichi Handa <handa@m17n.org>
17171
17172 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
17173 (x_produce_glyphs): Fix setting of members of cmp in case
17174 cmp->glyph_len is zero.
17175
17176 * fontset.c (Fset_fontset_font): Fix docstring.
17177 (Ffontset_info): Make it backward compatible. New arg ALL.
17178
17179 2008-02-01 Kim F. Storm <storm@cua.dk>
17180
17181 * process.c (read_process_output): Grow decoding_buf when needed;
17182 this could cause a crash in allocate_string and compact_small_strings.
17183
17184 2008-02-01 Kenichi Handa <handa@m17n.org>
17185
17186 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
17187
17188 2008-02-01 Kenichi Handa <handa@m17n.org>
17189
17190 * coding.c (setup_coding_system): Set coding->common_flags
17191 correctly for raw-text.
17192 (consume_chars): On encoding unibyte text by raw-text, don't check
17193 multibyte form.
17194 (encode_coding): On encoding by raw-text, never use translation tables.
17195
17196 * fileio.c (e_write): Short cut for the case of no encoding.
17197
17198 2008-02-01 Kenichi Handa <handa@m17n.org>
17199
17200 * coding.c (detect_coding, detect_coding_system): Delete unused
17201 variables.
17202
17203 2008-02-01 Kenichi Handa <handa@m17n.org>
17204
17205 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
17206 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
17207
17208 2008-02-01 Kenichi Handa <handa@m17n.org>
17209
17210 * coding.c (Ffind_coding_systems_region_internal): Include
17211 raw-text and no-conversion in the result.
17212
17213 2008-02-01 Kenichi Handa <handa@m17n.org>
17214
17215 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
17216 (load_font_get_repertory): Delete unnecessary check of ENCODING of
17217 FONT_DEF.
17218 (font_def_arg, add_arg, from_arg, to_arg): New args.
17219 (set_fontset_font): Change argument.
17220 (Fset_fontset_font): Fix for the case that TARGET is a script
17221 name and charset name.
17222 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
17223
17224 2008-02-01 Kenichi Handa <handa@m17n.org>
17225
17226 * fontset.c (fontset_font): Rename from fontset_face. Change return
17227 value.
17228 (face_suitable_for_char_p, face_for_char): Adjust for the change
17229 of fontset_font.
17230 (make_fontset_for_ascii_face): Fix setting of the fontset element
17231 for ASCII.
17232 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
17233 to get a font name.
17234 (Ffontset_info): Adjust for the change of fontset_font.
17235
17236 * coding.c (emacs_mule_char): Check invalid code more rigidly.
17237
17238 * character.h (LEADING_CODE_LATIN_1_MIN)
17239 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
17240
17241 2008-02-01 Kenichi Handa <handa@m17n.org>
17242
17243 * editfns.c (check_translation): New function.
17244 (Ftranslate_region_internal): Handle M:N mapping.
17245
17246 2008-02-01 Kenichi Handa <handa@m17n.org>
17247
17248 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
17249
17250 2008-02-01 Kenichi Handa <handa@m17n.org>
17251
17252 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
17253 goto invalid_code.
17254 (decode_coding_iso_2022): Fix handling of invalid designation.
17255
17256 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
17257 after calling code_conversion_save.
17258
17259 2008-02-01 Kenichi Handa <handa@m17n.org>
17260
17261 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
17262
17263 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
17264
17265 * fontset.c: Include "intervals.h".
17266 (fontset_face): Fix comparing of Lisp_Objects.
17267 (free_face_fontset, new_fontset_from_font_name): Fix
17268 Lisp_Object/int mixup.
17269
17270 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
17271
17272 * coding.c: Add many prototypes for static functions.
17273 (get_translation_table): Allow max_lookup to be NULL.
17274 (decode_coding, Ffind_coding_systems_region_internal)
17275 (Funencodable_char_position, Fcheck_coding_systems_region): Call
17276 get_translation_table with max_lookup NULL.
17277
17278 2008-02-01 Kenichi Handa <handa@m17n.org>
17279
17280 * coding.c (get_translation_table): Declare it as Lisp_Object.
17281 (LOOKUP_TRANSLATION_TABLE): New macro.
17282 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
17283 instead of CHAR_TABLE_REF.
17284
17285 2008-02-01 Kenichi Handa <handa@m17n.org>
17286
17287 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
17288 annotation data format.
17289 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
17290 Change arguments FROM and TO to single argument NCHARS. Change caller.
17291 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
17292 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
17293 (decode_coding_ccl, decode_coding_charset): Pay attention to
17294 coding->charbuf_used.
17295 (get_translation): New function.
17296 (produce_chars): New arguments translation_table and last_block.
17297 Translate characters here. Return number of carryover chars.
17298 Change caller.
17299 (produce_composition): New argument pos. Change caller.
17300 Adjust for the change of annotation data format.
17301 (produce_charset, produce_annotation): Likewise.
17302 (decode_coding, encode_coding): Don't call translate_chars.
17303 (consume_chars): New arg translation_table. Change caller.
17304 (translate_chars): Delete.
17305 (syms_of_coding): Make translation-table's number of extra slots 2.
17306
17307 2008-02-01 Kenichi Handa <handa@m17n.org>
17308
17309 * search.c (simple_search): Fix setting this_pos_byte in backward
17310 search.
17311
17312 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
17313 byte sequence.
17314 (detect_coding_ccl): Fix setting of the variable valids.
17315
17316 2008-02-01 Kenichi Handa <handa@m17n.org>
17317
17318 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
17319
17320 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
17321
17322 * editfns.c (Ftranslate_region_internal): Rename from
17323 Ftranslate_region. Accept a char-table in TABLE.
17324 (syms_of_editfns): Defsubr Stranslate_region_internal.
17325
17326 * xfaces.c (set_lface_from_font_name): If a font is specified for
17327 a frame, generate a fontset from the font.
17328 (build_scalable_font_name): If the scalable font is requested for
17329 a specific size, don't change that size.
17330 (try_font_list): Try a scalable font also in the case that a
17331 pattern string is specified.
17332
17333 2008-02-01 Kenichi Handa <handa@m17n.org>
17334
17335 * xfaces.c (Fface_font): New optional arg CHARACTER.
17336
17337 2008-02-01 Kenichi Handa <handa@m17n.org>
17338
17339 * charset.h (CHARSET_OFFSET): New macro.
17340
17341 2008-02-01 Kenichi Handa <handa@m17n.org>
17342
17343 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
17344
17345 * fontset.c (fontset_face): Handle the case that repertory is a
17346 char-table.
17347 (find_font_encoding): Return nil for unknown encoding.
17348 (Fset_fontset_font): Ignore a font of unknown encoding.
17349
17350 2008-02-01 Kenichi Handa <handa@m17n.org>
17351
17352 * keymap.c (describe_vector): Handle default value of a char table.
17353
17354 * fontset.c (fontset_face): Handle fallback fonts correctly.
17355 (Ffontset_info): Return infomation about fallback fonts.
17356
17357 2008-02-01 Kenichi Handa <handa@m17n.org>
17358
17359 * fontset.c (FONTSET_DEFAULT): New macro.
17360 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
17361 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
17362 the case that it is nil.
17363 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
17364 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
17365
17366 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
17367 subset or superset.
17368
17369 2008-02-01 Kenichi Handa <handa@m17n.org>
17370
17371 * emacs.c (main): Call init_charset after syms_of_XXX.
17372
17373 * charset.c (Vcharset_map_directory): Delete.
17374 (Vcharset_map_path): New variable.
17375 (load_charset_map_from_file): Use Vcharset_map_path instead.
17376 (init_charset): Initialize Vcharset_map_path.
17377 (syms_of_charset): Delete declaration of "charset-map-directory",
17378 add declaration of "charset-map-path".
17379
17380 2008-02-01 Kenichi Handa <handa@m17n.org>
17381
17382 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
17383 ASCII only string.
17384
17385 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
17386
17387 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
17388 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
17389
17390 2008-02-01 Kenichi Handa <handa@m17n.org>
17391
17392 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
17393
17394 * coding.c (QCmnemonic, QCdefalut_char)
17395 (QCdecode_translation_table, QCencode_translation_table)
17396 (QCpost_read_conversion, QCpre_write_conversion): New variables.
17397 (get_translation_table): Return a list of translation tables if
17398 necessary.
17399 (decode_coding): Call get_translation_table with ENCODEP 0.
17400 (char_encodable_p): If translation_table is non-nil, always call
17401 translate_char.
17402 (Fdefine_coding_system_internal): Accept list of translation
17403 tables as :encode-translation-table and :decode-translation-table.
17404 (Fcoding_system_put): New function.
17405 (syms_of_coding): Declare new symbols. Defsubr
17406 Scoding_system_put.
17407 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
17408 typically JISX0212.
17409
17410 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
17411 when the charset is superset type.
17412
17413 * character.c (translate_char): Accept list of translation tables.
17414
17415 2008-02-01 Kenichi Handa <handa@m17n.org>
17416
17417 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
17418 (CODING_ATTR_TRANS_TBL): New macro.
17419
17420 * coding.c (get_translation_table): New function.
17421 (translate_chars): Fix the bug of skipping annotation data.
17422 (decode_coding, encode_coding): Utilize get_translation_table.
17423 (char_encodable_p, Funencodable_char_position): Translate char if
17424 necessary.
17425 (Ffind_coding_systems_region_internal)
17426 (Fcheck_coding_systems_region): Setup translation table for encode
17427 in a coding system attribute vector in advance.
17428 (Fdefine_coding_system_internal): Allow a symbol as translation
17429 table. For shift-jis type coding system, allow 4th charset.
17430
17431 2008-02-01 Kenichi Handa <handa@m17n.org>
17432
17433 * coding.c (decode_coding_sjis): Check the first byte rigidly.
17434
17435 * xdisp.c (get_next_display_element): Pass -1 as POS to
17436 FACE_FOR_CHAR if displaying a C-string.
17437
17438 2008-02-01 Kenichi Handa <handa@m17n.org>
17439
17440 * composite.c (get_composition_id): Handle xoff and yoff in a
17441 composition rule.
17442
17443 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
17444 (struct composition): New member lbearing and rbearing.
17445
17446 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
17447 (x_get_glyph_overhangs): Handle a composition glyph.
17448 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
17449
17450 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
17451 composition glyph.
17452
17453 2008-02-01 Kenichi Handa <handa@m17n.org>
17454
17455 * print.c: Include charset.h.
17456 (Vprint_charset_text_property): New variable.
17457 (Qdefault): Extern it.
17458 (PRINT_STRING_NON_CHARSET_FOUND)
17459 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
17460 (print_check_string_result): New variable.
17461 (print_check_string_charset_prop): New function.
17462 (print_prune_charset_plist): New variable.
17463 (print_prune_string_charset): New function.
17464 (print_object): Call print_prune_string_charset if
17465 Vprint_charset_text_property is not t.
17466 (print_interval): Print nothing if interval->plist is nil.
17467 (syms_of_print): Declare Vprint_charset_text_property as a lisp
17468 variable. Init and staticpro print_prune_charset_plist.
17469
17470 2008-02-01 Kenichi Handa <handa@m17n.org>
17471
17472 * fontset.c (new_fontset_from_font_name): Use the specified font
17473 for all characters in the new fontset.
17474
17475 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
17476 OBJECT args.
17477
17478 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
17479 OBJECT args for composition too.
17480
17481 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
17482 OBJECT args.
17483
17484 2008-02-01 Kenichi Handa <handa@m17n.org>
17485
17486 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
17487
17488 * fontset.c (reorder_font_vector): Adjust for the change of
17489 FONT_DEF format.
17490 (fontset_face): New arg id. Change caller.
17491 (face_for_char): New args pos and object.
17492 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
17493 (fs_query_fontset): Check NAME by Fassoc too.
17494 (Fset_fontset_font): Allow non-XLFD font name.
17495 (Ffontset_info): Adjust for the change of FONT_DEF format.
17496
17497 * fontset.h (face_for_char): Adjust prototype.
17498
17499 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
17500 (append_space, extend_face_to_end_of_line)
17501 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
17502 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
17503
17504 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
17505 POS and OBJECT args.
17506
17507 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
17508 POS and OBJECT args.
17509
17510 2008-02-01 Jason Rumney <jasonr@gnu.org>
17511
17512 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
17513 of GlobalAlloc'ed memory.
17514
17515 2008-02-01 Kenichi Handa <handa@m17n.org>
17516
17517 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
17518
17519 * charset.h (charset_table_used): Delete extern.
17520
17521 * charset.c (charset_table_used): Make it static.
17522 (map_charset_chars): Fix args to c_function with.
17523
17524 * chartab.c (map_sub_char_table_for_charset): Fix args to
17525 c_function with.
17526
17527 * coding.h (enum coding_result_code): Delete
17528 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
17529
17530 * coding.c (Qinsufficient_source, Qinconsistent_eol)
17531 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
17532 (Vlast_code_conversion_error): New variables.
17533 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
17534 (ONE_MORE_BYTE): Record error if any instead of signaling an
17535 error. If non-ASCII multibyte char is found, return the negative
17536 value of the code. All callers changed to check it.
17537 (ONE_MORE_BYTE_NO_CHECK): Likewise.
17538 (record_conversion_result): New function. Change all codes setting
17539 coding->result to call this function.
17540 (detect_coding_utf_8, decode_coding_utf_8)
17541 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
17542 Don't use the local variable incomplete.
17543 (emacs_mule_char): Change the second arg to `const'.
17544 (decode_coding): Fix of flushing out unprocessed data.
17545 (make_conversion_work_buffer): Fix making of a work buffer.
17546 (decode_coding_object): Return coding->dst_object.
17547
17548 * fontset.c (set_fontset_font): Fix args.
17549
17550 * lisp.h (CHARACTERBITS): Define as 22.
17551
17552 * process.c (send_process): Be sure to set coding->src_multibyte.
17553
17554 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
17555
17556 2008-02-01 Kenichi Handa <handa@m17n.org>
17557
17558 * xdisp.c (handle_auto_composed_prop): Give limit to
17559 Fnext_single_char_property_change.
17560
17561 2008-02-01 Kenichi Handa <handa@m17n.org>
17562
17563 * composite.c (syms_of_composite): Don't make the composition hash
17564 table weak.
17565
17566 * fontset.c (Fset_fontset_font): Fix docstring.
17567
17568 * lisp.h (detect_coding_system): Adjust prototype.
17569
17570 * fileio.c (kill_workbuf_unwind): Delete this function.
17571 (Finsert_file_contents): Adjust the call of detect_coding_system.
17572 Get conversion_buffer by code_conversion_save. Use the macro
17573 CODING_MAY_REQUIRE_DECODING. After decoding, update
17574 coding_system.
17575
17576 * coding.h (make_conversion_work_buffer): Delete extern.
17577 (code_conversion_save): Extern it.
17578
17579 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
17580 (CODING_GET_INFO): Delete argument eol_type. Change callers.
17581 (decode_coding_utf_8): Don't do eol converion.
17582 (detect_coding_utf_16): Check coding->src_chars, not
17583 coding->src_bytes. Add heuristics for those that have no signature.
17584 (decode_coding_emacs_mule, decode_coding_iso_2022)
17585 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
17586 Don't do eol converion.
17587 (adjust_coding_eol_type): Return a new coding system.
17588 (detect_coding): Don't detect eol. Fix for utf-16 detection.
17589 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
17590 each change.
17591 (decode_coding): Pay attention to undo_list. Do eol conversion for
17592 all types of coding-systems (if necessary).
17593 (Vcode_conversion_work_buf_list): Delete it.
17594 (Vcode_conversion_reused_workbuf): Rename from
17595 Vcode_conversion_reused_work_buf.
17596 (Vcode_conversion_workbuf_name): New variable.
17597 (reused_workbuf_in_use): New variable.
17598 (make_conversion_work_buffer): Delete the arg DEPTH.
17599 (code_conversion_restore): Change argument to cons.
17600 (code_conversion_save): Delete the argument BUFFER. Change callers.
17601 (detect_coding_system): New argument src_chars. Change callers.
17602 Fix for utf-16 detection.
17603 (init_coding_once): Don't use ISO_carriage_return.
17604 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
17605 reused_workbuf_in_use.
17606
17607 2008-02-01 Kenichi Handa <handa@m17n.org>
17608
17609 * keymap.c (store_in_keymap): Pay attention to the case that idx
17610 is a cons specifying a character range.
17611
17612 2008-02-01 Kenichi Handa <handa@m17n.org>
17613
17614 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
17615 HANDLED_RECOMPUTE_PROPS.
17616
17617 * coding.c (Fdefine_coding_system_internal): Fix checking of
17618 ascii compatibility.
17619
17620 2008-02-01 Kenichi Handa <handa@m17n.org>
17621
17622 * charset.c (find_charsets_in_text): Delete unused locale variable.
17623 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
17624
17625 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
17626 Resync charset_list to Vemacs_mule_charset_list.
17627
17628 * keymap.c (store_in_keymap): Pay attention to the case that idx
17629 is a cons specifying a character range.
17630
17631 2008-02-01 Kenichi Handa <handa@m17n.org>
17632
17633 * composite.c (update_compositions): Bind inhibit-read-only, etc
17634 to t before calling remove-list-of-text-properties.
17635
17636 * print.c (print_object): Always print ASCII chars as is.
17637
17638 2008-02-01 Kenichi Handa <handa@m17n.org>
17639
17640 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
17641
17642 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
17643 is a char table.
17644
17645 2008-02-01 Kenichi Handa <handa@m17n.org>
17646
17647 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
17648
17649 2008-02-01 Kenichi Handa <handa@m17n.org>
17650
17651 * xfaces.c (set_lface_from_font_name): Fix for the case that
17652 FONTNAME is not fontset name.
17653
17654 2008-02-01 Kenichi Handa <handa@m17n.org>
17655
17656 * fns.c (base64_encode_1): Fix previous change.
17657
17658 2008-02-01 Kenichi Handa <handa@m17n.org>
17659
17660 * fontset.c (set_fontset_font): New function.
17661 (Fset_fontset_font): If a font is specified for a charset, use
17662 map_charset_chars to store the font spec in a fontset.
17663
17664 2008-02-01 Kenichi Handa <handa@m17n.org>
17665
17666 * fontset.c (fontset_face): Create a fallback fontset on demand.
17667 (make_fontset): Don't create a fallback fontset here.
17668 (free_face_fontset): Free a fallback fontset (if any) too.
17669 (n_auto_fontsets): Delete this variable.
17670 (auto_fontset_alist): New variable.
17671 (new_fontset_from_font_name): Check auto_fontset_alist.
17672 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
17673 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
17674 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
17675 Defsubr Sfontset_list_all.
17676
17677 2008-02-01 Kenichi Handa <handa@m17n.org>
17678
17679 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
17680
17681 2008-02-01 Kenichi Handa <handa@m17n.org>
17682
17683 * fontset.c (Fnew_fontset): Check NAME more rigidly.
17684
17685 2008-02-01 Kenichi Handa <handa@m17n.org>
17686
17687 * editfns.c (Fgoto_char): Fix docstring.
17688
17689 2008-02-01 Kenichi Handa <handa@m17n.org>
17690
17691 * insdel.c (insert_from_gap): Adjust intervals correctly.
17692
17693 2008-02-01 Jason Rumney <jasonr@gnu.org>
17694
17695 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
17696 (pfnGetFontUnicodeRanges): New dynamically loaded function.
17697 (w32_initialize): Try to load it.
17698 (x_get_font_repertory): Use it if available.
17699 (w32_encode_char): Add shortcut for unicode output.
17700
17701 * w32fns.c (w32_load_system_font): Default charset to -1.
17702 (x_to_w32_charset): Match all fonts for unicode.
17703 (w32_to_x_charset): New parameter matching. Don't return partial
17704 or wildcard charsets.
17705 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
17706 (w32_codepage_for_font): Return CP_UNICODE for unicode.
17707 (w32_to_x_font): Match charset to real charset.
17708 (enum_font_cb2): Always list unicode versions.
17709
17710 * makefile.w32-in (temacs): Increase EMHEAP.
17711
17712 2008-02-01 Jason Rumney <jasonr@gnu.org>
17713
17714 * w32term.c (w32_encode_char): New charset parameter.
17715 font_info.encoding becomes encoding_type.
17716 (x_get_font_repertory): New function. Warning: stub only!
17717 (x_new_font): Return quickly if font already set.
17718 (x_new_fontset): fontsetname parameter is Lisp_Object.
17719 Use new fs_query_fontset. Try new_fontset_from_font_name.
17720 Use fontset_name for return value.
17721
17722 * w32term.h: Declare x_get_font_repertory.
17723
17724 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
17725 place of find_charset_in_text. Use encode_coding_object in place
17726 of encode_coding.
17727 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
17728 decode_coding.
17729
17730 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
17731 of x_new_fontset.
17732 (w32_load_system_font): Initialize charset as unicode.
17733 font_info.encoding becomes encoding_type.
17734 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
17735 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
17736 (syms_of_w32fns): Set get_font_repertory_func.
17737
17738 * w32console.c: Include character.h. Use terminal_encode_buffer
17739 from term.c.
17740 (write_glyphs): Use new version of encode_terminal_code. Use
17741 encode_coding_object in place of encode_coding.
17742
17743 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
17744 encoding becomes encoding_type.
17745
17746 * term.c (terminal_encode_buffer): Make externally visible.
17747
17748 * makefile.w32-in: Add character.h dependancies.
17749 (character.o, chartab.o): New targets.
17750
17751 2008-02-01 Kenichi Handa <handa@m17n.org>
17752
17753 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
17754 CODING_ID_EOL_TYPE.
17755
17756 2008-02-01 Andreas Schwab <schwab@suse.de>
17757
17758 * coding.c (produce_chars): Revert last change.
17759
17760 2008-02-01 Kenichi Handa <handa@m17n.org>
17761
17762 * charset.h (charset_unicode): Extern it.
17763
17764 * charset.c (string_xstring_p): Check by (C >= 0x100).
17765 (find_charsets_in_text): Change format of the arc CHARSETS. New
17766 arg MULTIBYTE.
17767 (Ffind_charset_region, Ffind_charset_string): Adjust for the
17768 change of find_charsets_in_text.
17769 (Fsplit_char): Fix doc. Never return unknown.
17770
17771 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
17772
17773 * coding.c (Fdefine_coding_system_alias): Update
17774 Vcoding_system_list.
17775
17776 * fontset.c (load_font_get_repertory): Pay attention to the case
17777 that ENCODING of a font is specified by a char-table.
17778
17779 * xterm.c (x_get_font_repertory): Handle the case that the
17780 encoding of font is other than Unicode.
17781
17782 2008-02-01 Kenichi Handa <handa@m17n.org>
17783
17784 * term.c (encode_terminal_code): Don't handle glyph-table. Check
17785 if a character is encodable by the terminal coding system. If
17786 not, produces proper number of `?'s. Update
17787 terminal_encode_buffer and terminal_encode_buf_size if necessary.
17788 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
17789
17790 2008-02-01 Kenichi Handa <handa@m17n.org>
17791
17792 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
17793 variables.
17794 (encode_terminal_code): Change argument. Encode multiple
17795 characters at once. Store the result of encoding in
17796 terminal_encode_buffer.
17797 (write_glyphs, insert_glyphs): Adjust for the change of
17798 encode_terminal_code.
17799 (term_init): Initialize terminal_encode_buffer and
17800 terminal_encode_buf_size.
17801
17802 * coding.c (consume_chars): If coding->src_object is nil, don't
17803 check annotation.
17804
17805 2008-02-01 Kenichi Handa <handa@m17n.org>
17806
17807 * character.c (char_string): Use ASCII_CHAR_P instead of
17808 SINGLE_BYTE_CHAR_P.
17809
17810 2008-02-01 Kenichi Handa <handa@m17n.org>
17811
17812 * xdisp.c (handle_auto_composed_prop): Check if the last
17813 characters of auto-composed region is newly composed with the
17814 following characters.
17815 (handle_composition_prop): Fix checking of point being inside
17816 composition.
17817
17818 2008-02-01 Kenichi Handa <handa@m17n.org>
17819
17820 * fns.c (concat): Don't change multibyteness of the result by
17821 concatenating an 8-bit character.
17822
17823 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
17824 multibyteness of the result when newelt is an 8-bit character.
17825
17826 2008-02-01 Dave Love <fx@gnu.org>
17827
17828 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
17829 EMACS_INT.
17830
17831 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
17832
17833 * xfaces.c (face_numeric_value): Declare dim size_t.
17834 (Finternal_lisp_face_equal_p): Remove unused f.
17835
17836 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
17837 (MATRIX_ROW): Remove unused vars.
17838 (draw_glyphs, x_insert_glyphs, fast_find_position)
17839 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
17840 byte/char counts.
17841
17842 * regex.c (regex_compile): Remove unused var.
17843
17844 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
17845
17846 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
17847 (Faccessible_keymaps, where_is_internal): Remove unused vars.
17848
17849 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
17850
17851 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
17852
17853 * fileio.c (Fwrite_region): Remove unused var.
17854
17855 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
17856 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
17857
17858 * composite.c (Fremove_list_of_text_properties): Declare.
17859
17860 * coding.c (inhibit_pre_post_conversion): Remove (unused).
17861 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
17862 (coding_inherit_eol_type): Remove unused attrs.
17863 (detect_coding): Cast arg of detect_eol.
17864
17865 * charset.c (syms_of_charset): Remove unused var p.
17866 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
17867 byte/char counts.
17868
17869 * casetab.c (set_case_table): Remove unused var.
17870
17871 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
17872 unused vars.
17873
17874 2008-02-01 Dave Love <fx@gnu.org>
17875
17876 * xterm.c (x_bitmap_mask): Declare.
17877
17878 2008-02-01 Dave Love <fx@gnu.org>
17879
17880 * xterm.c (x_term_init): Fix type error.
17881
17882 * lisp.h: Add Funibyte_char_to_multibyte.
17883
17884 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
17885 (Fset_coding_system_priority): Doc fix.
17886
17887 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
17888
17889 * indent.c (check_composition): Make start and end EMACS_INT.
17890
17891 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
17892
17893 * xdisp.c (handle_composition_prop, check_point_in_composition):
17894 Make buffer positions EMACS_INT.
17895
17896 * composite.c (find_composition, run_composition_function)
17897 (update_compositions, Ffind_composition_internal): Make buffer
17898 positions EMACS_INT.
17899
17900 * composite.h (find_composition, update_compositions): Make
17901 position args EMACS_INT.
17902
17903 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
17904
17905 * intervals.c (get_property_and_range):
17906 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
17907
17908 * unexalpha.c: Don't include varargs.h.
17909
17910 2008-02-01 Dave Love <fx@gnu.org>
17911
17912 * coding.h (ENCODE_UTF_8): New.
17913
17914 * Makefile.in (gtkutil.o): Depend on coding.h.
17915
17916 * coding.c (Fset_coding_system_priority): Doc fix.
17917
17918 2008-02-01 Kenichi Handa <handa@m17n.org>
17919
17920 * fileio.c (Finsert_file_contents): Call setup_coding_system in
17921 the case of auto saving.
17922
17923 2008-02-01 Andreas Schwab <schwab@suse.de>
17924
17925 * chartab.c (map_char_table, map_char_table_for_charset): Protect
17926 `range' from GC.
17927
17928 2008-02-01 Kenichi Handa <handa@m17n.org>
17929
17930 * coding.c (decode_coding_sjis): Check bytes more rigidly.
17931
17932 2008-02-01 Kenichi Handa <handa@m17n.org>
17933
17934 * fileio.c (choose_write_coding_system): Return a decided coding system.
17935 (Fwrite_region): Set Vlast_coding_system_used to the return value
17936 of choose_write_coding_system.
17937
17938 2008-02-01 Kenichi Handa <handa@m17n.org>
17939
17940 * charset.c (Fset_charset_priority): Pay attention to duplicated
17941 arguments.
17942
17943 * coding.c (QCcategory): New variable.
17944 (syms_of_coding): Defsym it. Set all elements of
17945 Vcoding_category_table and their symbol values.
17946 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
17947 coding-category-XXX, and coding-category-list.
17948 (Fdefine_coding_system_internal): Add category in the plist.
17949
17950 2008-02-01 Kenichi Handa <handa@m17n.org>
17951
17952 * callproc.c (Fcall_process): Handle carryover correctly.
17953
17954 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
17955 (raw_text_coding_system): Check NILP (coding_system).
17956 (coding_inherit_eol_type): Check NILP (coding_system) and
17957 NILP (parent).
17958 (consume_chars): Fix for the case of raw-text.
17959
17960 * process.c (read_process_output): Handle carryover correctly.
17961
17962 2008-02-01 Dave Love <fx@gnu.org>
17963
17964 * regex.c (re_search_2): Fix last change.
17965
17966 2008-02-01 Kenichi Handa <handa@m17n.org>
17967
17968 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
17969 target_multibyte. Even in a unibyte case, return a converted
17970 multibyte char.
17971 (GET_CHAR_AFTER): New macro.
17972 (PATFETCH): Translate via multibyte char.
17973 (HANDLE_UNIBYTE_RANGE): Delete this macro.
17974 (SETUP_MULTIBYTE_RANGE): New macro.
17975 (regex_compile): Setup compiled code so that its multibyteness
17976 matches that of a target. Fix the handling of "[X-YZ]" using
17977 SETUP_MULTIBYTE_RANGE.
17978 (analyse_first) <charset>: For filling fastmap for all multibyte
17979 characters, don't check by BASE_LEADING_CODE_P.
17980 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
17981 the same as RE_MULTIBYTE_P (bufp) now.
17982 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
17983 (TARGET_CHAR_AND_LENGTH): Delete this macro.
17984 (TRANSLATE_VIA_MULTIBYTE): New macro.
17985 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
17986 It is the same as RE_MULTIBYTE_P (bufp) now.
17987 <exactn>: Translate via multibyte.
17988 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
17989 translate it.
17990 <charset, charset_not>: Fetch a character by
17991 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
17992 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
17993 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
17994 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
17995 by GET_CHAR_AFTER.
17996 (bcmp_translate): Likewise.
17997
17998 * search.c (compile_pattern): Check the member target_multibyte,
17999 not the member multibyte of buf.
18000
18001 * lread.c (read1): While reading a string, set force_singlebyte
18002 and force_multibyte correctly.
18003
18004 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
18005 up of unibyte_to_multibyte_table.
18006
18007 2008-02-01 Kenichi Handa <handa@m17n.org>
18008
18009 * coding.c (setup_coding_system): If coding has
18010 post-read-conversion or pre-write-conversion, set
18011 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
18012 respectively.
18013 (decode_coding_gap): Run post-read-conversion if any.
18014
18015 * fileio.c (Finsert_file_contents): Even if we read into a
18016 unibyte buffer, check if we must decode the result or not.
18017
18018 2008-02-01 Kenichi Handa <handa@m17n.org>
18019
18020 * coding.c (make_conversion_work_buffer): Change the work buffer
18021 name to the same one as that of Emacs 21.
18022
18023 2008-02-01 Kenichi Handa <handa@m17n.org>
18024
18025 * coding.h (make_conversion_work_buffer): Adjust prototype.
18026 (code_conversion_restore): Don't extern it.
18027
18028 * coding.c (detected_mask): Delete unused variable.
18029 (decode_coding_iso_2022): Pay attention to the byte sequence of
18030 CTEXT extended segment, and retain those bytes as is.
18031 (decode_coding_ccl): Delete unused variable `valids'.
18032 (setup_coding_system): Delete unused variable `category'.
18033 (consume_chars): Delete unused variable `category'. Make it work
18034 for non-multibyte case.
18035 (make_conversion_work_buffer): Change argument.
18036 (saved_coding): Delete unused variable.
18037 (code_conversion_restore): Don't check saved_coding->destination.
18038 (code_conversion_save): New function.
18039 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
18040 instead of record_unwind_protect.
18041 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
18042 (detect_coding_system): Delete unused variable `mask'.
18043 (Fdefine_coding_system_internal): Delete unused variable id.
18044
18045 * fileio.c (kill_workbuf_unwind): New function.
18046 (Finsert_file_contents): On replacing, call
18047 make_conversion_work_buffer with correct args, and call
18048 record_unwind_protect with the first arg kill_workbuf_unwind.
18049
18050 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
18051
18052 2008-02-01 Kenichi Handa <handa@m17n.org>
18053
18054 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
18055 (fontset_add): Fix for the case that TO is less than TO1.
18056 (Ffontset_info): Don't use fallback fontset on checking the
18057 default fontset.
18058 (dump_fontset): New function for debugging.
18059
18060 * coding.c (Fdefine_coding_system_internal): Fix for the case that
18061 coding_type is Qcharset.
18062
18063 2008-02-01 Kenichi Handa <handa@m17n.org>
18064
18065 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
18066 (map_char_table): Don't inherit the value from the parent on
18067 initializing VAL. Adjust for the above change.
18068
18069 2008-02-01 Kenichi Handa <handa@m17n.org>
18070
18071 * coding.c (Qsignature, Qendian): Delete these variables.
18072 (syms_of_coding): Don't initialize them.
18073 (CATEGORY_MASK_UTF_16_AUTO): New macro.
18074 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
18075 detect_info->found.
18076 (decode_coding_utf_16): Don't detect BOM here.
18077 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
18078 is NOT utf_16_without_bom.
18079 (setup_coding_system): For a coding system of type utf-16, check
18080 if the attribute :endian is Qbig or not (not nil or not), and set
18081 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
18082 (detect_coding): If coding type is utf-16 and BOM detection is
18083 required, detect it.
18084 (Fdefine_coding_system_internal): For a coding system of type
18085 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
18086
18087 2008-02-01 Kenichi Handa <handa@m17n.org>
18088
18089 * coding.c (coding_set_source): Fix for the case that the current
18090 buffer is different from coding->src_object.
18091 (decode_coding_object): Don't use the conversion work buffer if
18092 DST_OBJECT is a buffer.
18093
18094 2008-02-01 Dave Love <fx@gnu.org>
18095
18096 * lread.c (read_emacs_mule_char) [len==2]: Index
18097 emacs_mule_charset correctly.
18098
18099 2008-02-01 Dave Love <fx@gnu.org>
18100
18101 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
18102 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
18103 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
18104 treated specially.)
18105 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
18106 (detected_mask): Remove Big5 bits.
18107
18108 2008-02-01 Kenichi Handa <handa@m17n.org>
18109
18110 The following changes are to make the font rescaling facility
18111 compatible with Emacs 21.
18112
18113 * xfaces.c (Vface_font_rescale_alist): Rename from
18114 Vface_resizing_fonts.
18115 (struct font_name): Rename member resizing_ratio to rescale_ratio.
18116 (font_rescale_ratio): Rename from font_resizing_ratio.
18117 (split_font_name): Set font->rescale_ratio.
18118 (better_font_p): Pay attention to font->rescale_ratio.
18119 (build_scalable_font_name): Likewise. Change RESX, and RESY
18120 fields.
18121 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
18122
18123 2008-02-01 Kenichi Handa <handa@m17n.org>
18124
18125 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
18126 (Qutf_16_le): Remove these variables.
18127 (syms_of_coding): Don't DEFSYM them.
18128 (decode_coding_utf_16): Fix handling of BOM.
18129 (encode_coding_utf_16): Fix handling of BOM.
18130
18131 2008-02-01 Kenichi Handa <handa@m17n.org>
18132
18133 * fileio.c (Finsert_file_contents): On replacing, before decoding
18134 the file into the work buffer, set point of the work buffer to the end.
18135
18136 2008-02-01 Dave Love <fx@gnu.org>
18137
18138 * coding.c (Fcheck_coding_systems_region): Fix type errors.
18139
18140 2008-02-01 Dave Love <fx@gnu.org>
18141
18142 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
18143 and fix C types.
18144
18145 2008-02-01 Kenichi Handa <handa@m17n.org>
18146
18147 * xdisp.c (SKIP_GLYPHS): New macro.
18148 (set_cursor_from_row): Pay attention to string display properties.
18149
18150 * category.c (copy_category_entry): Fix for the case that RANGE
18151 is an integer.
18152
18153 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
18154
18155 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
18156
18157 2008-02-01 Kenichi Handa <handa@m17n.org>
18158
18159 * charset.c (Fcharset_id_internal): New function.
18160 (syms_of_charset): Defsubr it.
18161
18162 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
18163 with the last arg charset_list acquired from coding.
18164 (Fdefine_coding_system_internal): For ccl-based coding system, fix
18165 the attribute coding_attr_ccl_valids.
18166
18167 * coding.h (enum define_coding_ccl_arg_index): Set the first
18168 member coding_arg_ccl_decoder to coding_arg_max.
18169
18170 * ccl.h (ccl_driver): Adjust prototype.
18171
18172 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
18173 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
18174 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
18175 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
18176 last arg Qnil.
18177
18178 2008-02-01 Kenichi Handa <handa@m17n.org>
18179
18180 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
18181 call encode_char.
18182
18183 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
18184
18185 2008-02-01 Dave Love <fx@gnu.org>
18186
18187 * composite.c (syms_of_composite): Make composition_hash_table weak.
18188
18189 2008-02-01 Kenichi Handa <handa@m17n.org>
18190
18191 * dispextern.h (check_face_attributes, generate_ascii_font_name)
18192 (font_name_registry): Don't extern them.
18193 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
18194
18195 * fontset.h (Qfontset): Don't extern it.
18196 (new_fontset_from_font_name): Extern it.
18197
18198 * fontset.c: Give 8 extra slots to fontset objects.
18199 (Qfontset_info): New variable.
18200 (syms_of_fontset): Defsym it.
18201 (FONTSET_FALLBACK): New macro.
18202 (fontset_face): Try also the default fontset.
18203 (make_fontset): Realize a fallback fontset from the default fontset.
18204 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
18205 using split_font_name_into_vector and build_font_name_from_vector.
18206 (Fset_fontset_font): Access the elements of font_spec by enum
18207 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
18208 name by using split_font_name_into_vector.
18209 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
18210 generate a proper font name from the fontset name. Update
18211 Vfontset_alias_alist.
18212 (n_auto_fontsets): New variable.
18213 (new_fontset_from_font_name): New function.
18214 (Ffont_info): Store the information about fonts generated from the
18215 default fontset in the first extra slot of the returned char-table.
18216
18217 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
18218 (font_name_registry): Delete function.
18219 (split_font_name_into_vector): New function.
18220 (build_font_name_from_vector): New function.
18221 (font_list): The argument REGISTRY is now a list of registry names.
18222 (choose_face_font): If we are choosing an ASCII font, and ATTRS
18223 specifies an explicit font name, return the name as is. Make a
18224 list of registy names.
18225
18226 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
18227 of x_new_fontset.
18228 (Fx_create_frame): Don't call x_new_fontset here. Just use
18229 x_list_fonts to check the existence of fonts.
18230
18231 * xterm.h (x_new_fontset): Adjust prototype.
18232
18233 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
18234 string. Use new_fontset_from_font_name to create a fontset from a
18235 font name.
18236
18237 2008-02-01 Kenichi Handa <handa@m17n.org>
18238
18239 * syntax.c (Vfind_word_boundary_function_table): New name for
18240 Vnext_word_boundary_function_table.
18241 (find-word-boundary-function-table): New name for
18242 next-word-boundary-function-table.
18243
18244 2008-02-01 Dave Love <fx@gnu.org>
18245
18246 * Makefile.in: Fix some dependencies.
18247
18248 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
18249 set it to nil before returning.
18250
18251 * composite.c (update_compositions): Fix type error.
18252
18253 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
18254
18255 2008-02-01 Kenichi Handa <handa@m17n.org>
18256
18257 * xterm.c (x_new_font): Optimize for the case that the font is
18258 already set for the frame.
18259
18260 2008-02-01 Kenichi Handa <handa@m17n.org>
18261
18262 * chartab.c (char_table_ascii): Check if the char table contents
18263 is sub-char-table or not.
18264 (char_table_set, char_table_set_range): Fix argument to
18265 char_table_ascii.
18266
18267 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
18268 (detect_coding_utf_8, detect_coding_utf_16)
18269 (detect_coding_emacs_mule, detect_coding_iso_2022)
18270 (detect_coding_sjis, detect_coding_big5)
18271 (detect_coding_ccl, detect_coding_charset): Change argument MASK
18272 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
18273 sequence is valid in this coding system. Change callers.
18274 (MAX_ANNOTATION_LENGTH): New macro.
18275 (ADD_ANNOTATION_DATA): New macro.
18276 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
18277 ADD_ANNOTATION_DATA. Change the format of annotation data.
18278 (ADD_CHARSET_DATA): New macro.
18279 (emacs_mule_char): New argument ID. Change callers.
18280 (decode_coding_emacs_mule, decode_coding_iso_2022)
18281 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
18282 Produce charset annotation data in coding->charbuf.
18283 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
18284 to charset annotation data in coding->charbuf.
18285 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
18286 coding->common_flags if the coding system is iso-2022 based and
18287 uses designation.
18288 (produce_composition): Adjust for the new annotation data format.
18289 (produce_charset): New function.
18290 (produce_annotation): Handle charset annotation.
18291 (handle_composition_annotation, handle_charset_annotation): New
18292 functions.
18293 (consume_chars): Handle charset annotation. Utilize the above two
18294 functions.
18295 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
18296 buffer, get the deleted text as a string and set
18297 coding->src_object to that string.
18298 (detect_coding, detect_coding_system): Use the new struct
18299 coding_detection_info.
18300
18301 * coding.h (struct coding_detection_info): New structure.
18302 (struct coding_system): Adjust prototype of the member `detector'.
18303 (CODING_ANNOTATE_CHARSET_MASK): New macro.
18304
18305 2008-02-01 Kenichi Handa <handa@m17n.org>
18306
18307 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
18308
18309 2008-02-01 Dave Love <fx@gnu.org>
18310
18311 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
18312 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
18313 to new local and nullify apropos_accumulate before returning.
18314 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
18315
18316 2008-02-01 Kenichi Handa <handa@m17n.org>
18317
18318 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
18319 correctly.
18320
18321 2008-02-01 Dave Love <fx@gnu.org>
18322
18323 * fns.c (Flanginfo): Call synchronize_system_time_locale.
18324
18325 2008-02-01 Kenichi Handa <handa@m17n.org>
18326
18327 The following changes are to make character composition happen
18328 automatically on displaying.
18329
18330 * Makefile.in (lisp, shortlisp): Add composite.elc.
18331
18332 * composite.h (Qauto_composed, Vauto_composition_function)
18333 (Qauto_composition_function): Extern them.
18334
18335 * composite.c (Vcomposition_function_table)
18336 (Qcomposition_function_table): Delete variables.
18337 (Qauto_composed, Vauto_composition_function)
18338 (Qauto_composition_function): New variables.
18339 (run_composition_function): Don't call
18340 compose-chars-after-function.
18341 (update_compositions): Clear `auto-composed' text property.
18342 (compose_chars_in_text): Delete this function.
18343 (syms_of_composite): Staticpro Qauto_composed and
18344 Qauto_composition_function. Declare Vauto_composition_function as
18345 a Lisp variable.
18346
18347 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
18348
18349 * xdisp.c (it_props): Add an entry for Qauto_composed.
18350 (handle_auto_composed_prop): New function.
18351
18352 * xselect.c (selection_data_to_lisp_data): Don't call
18353 compose_chars_in_text.
18354
18355 2008-02-01 Dave Love <fx@gnu.org>
18356
18357 * keyboard.c (read_char): Modify checking around use of
18358 Vkeyboard_translate_table.
18359
18360 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
18361 and fix C types.
18362
18363 2008-02-01 Kenichi Handa <handa@m17n.org>
18364
18365 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
18366 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
18367 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
18368 the case that the last byte is '\r' correctly.
18369 (decode_coding): Flush out the unprocessed data correctly.
18370 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
18371
18372 2008-02-01 Dave Love <fx@gnu.org>
18373
18374 * xterm.c (XTread_socket): Fix changes for defined keysyms.
18375 Add XK_ISO... case.
18376 (xaw_scroll_callback): Revert last change.
18377
18378 2008-02-01 Kenichi Handa <handa@m17n.org>
18379
18380 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
18381
18382 2008-02-01 Kenichi Handa <handa@m17n.org>
18383
18384 * xfaces.c (Vface_resizing_fonts): New variable.
18385 (struct font_name): New member `resizing_ratio'.
18386 (font_resizing_ratio): New function.
18387 (split_font_name): Set font->resizing_ratio.
18388 (better_font_p): Pay attention to font->resizing_ratio.
18389 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
18390 RESX, and RESY fields.
18391 (try_alternative_families): Try scalable fonts if
18392 Vscalable_fonts_allowed is not Qt.
18393 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
18394
18395 2008-02-01 Dave Love <fx@gnu.org>
18396
18397 * xterm.c (xaw_scroll_callback): Cast correctly.
18398
18399 2008-02-01 Dave Love <fx@gnu.org>
18400
18401 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
18402 (lispy_kana_keys): Comment out.
18403 (make_lispy_event) [XK_kana_A]: Comment out.
18404
18405 * xterm.c (xaw_scroll_callback): Cast call_data.
18406 (XTread_socket): Deal with ASCII keysyms.
18407 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
18408
18409 2008-02-01 Dave Love <fx@gnu.org>
18410
18411 * xterm.c (Vx_keysym_table): New.
18412 (syms_of_xterm): Initialize it.
18413 (XTread_socket): Use it.
18414 From head: Eliminate incorrect optimization that tried to avoid
18415 decoding the output of X*LookupString.
18416 (x_get_font_repertory): Delete charset declaration.
18417
18418 2008-02-01 Kenichi Handa <handa@m17n.org>
18419
18420 * coding.c (detect_coding_charset): If only ASCII bytes are found,
18421 return 0.
18422 (Fdefine_coding_system_internal): Setup
18423 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
18424
18425 2008-02-01 Dave Love <fx@gnu.org>
18426
18427 * coding.c (Fcheck_coding_system): Doc fix.
18428
18429 * editfns.c (Finsert_byte): Return a proper value.
18430
18431 2008-02-01 Kenichi Handa <handa@m17n.org>
18432
18433 * coding.c (decode_coding): Fix args to translate_chars. Pay
18434 attention to Vstandard_translation_table_for_decode.
18435 (encode_coding): Fix args to translate_chars. Pay attention to
18436 Vstandard_translation_table_for_encode.
18437
18438 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
18439 SINGLE_BYTE_CHAR_P.
18440
18441 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
18442 not by SINGLE_BYTE_CHAR_P.
18443
18444 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
18445 SINGLE_BYTE_CHAR_P.
18446
18447 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
18448 SINGLE_BYTE_CHAR_P.
18449
18450 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
18451 by SINGLE_BYTE_CHAR_P.
18452
18453 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
18454 SINGLE_BYTE_CHAR_P.
18455
18456 2008-02-01 Dave Love <fx@gnu.org>
18457
18458 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
18459
18460 2008-02-01 Dave Love <fx@gnu.org>
18461
18462 * fns.c (Flanginfo): Fix typo.
18463
18464 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
18465
18466 2008-02-01 Kenichi Handa <handa@m17n.org>
18467
18468 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
18469 (detect_coding_emacs_mule, detect_coding_iso_2022)
18470 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
18471 incomplete byte sequence. Don't update *mask when correctly detected.
18472 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
18473 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
18474 (detect_coding, detect_coding_system): Adjust for the changes above.
18475
18476 2008-02-01 Kenichi Handa <handa@m17n.org>
18477
18478 * character.c (char_string): Rename from
18479 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
18480 (string_char): Rename from string_char.
18481
18482 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
18483 if C is greater than MAX_3_BYTE_CHAR.
18484 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
18485 string_char instead of string_char_with_unification.
18486
18487 2008-02-01 Dave Love <fx@gnu.org>
18488
18489 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
18490
18491 2008-02-01 Kenichi Handa <handa@m17n.org>
18492
18493 * keymap.c (push_key_description): Pay attention to force_multibyte.
18494
18495 * regex.c (re_search_2): Fix for the case of unibyte buffer.
18496
18497 2008-02-01 Dave Love <fx@gnu.org>
18498
18499 * charset.c (define_charset_internal): Rename `supprementary'.
18500
18501 * Makefile.in (lisp, shortlisp): Remove latin-N.
18502
18503 2008-02-01 Dave Love <fx@gnu.org>
18504
18505 * xfns.c (x_window, x_window): Use use_xim.
18506
18507 * xterm.c (use_xim): Initialize.
18508 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
18509 (x_term_init): Maybe set use_xim.
18510
18511 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
18512
18513 2008-02-01 Kenichi Handa <handa@m17n.org>
18514
18515 * search.c (search_buffer): Fix case-fold-search of multibyte
18516 characters.
18517 (boyer_moore): Rename the last argument to char_high_bits.
18518
18519 2008-02-01 Kenichi Handa <handa@m17n.org>
18520
18521 * xdisp.c (display_string): Fix for the case of zero width glyph.
18522
18523 * xfns.c (x_set_font): Change the error message of the case that
18524 x_new_fontset returns Qt.
18525
18526 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
18527 (Finternal_set_lisp_face_attribute): Use signal_error for the
18528 error of invalid fontset.
18529
18530 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
18531 fontset, return Qt.
18532
18533 2008-02-01 Dave Love <fx@gnu.org>
18534
18535 * unexelf.c (unexec): Make .got handling not SGI-specific.
18536
18537 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
18538
18539 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
18540
18541 * keyboard.c (read_key_sequence): Fix type error.
18542
18543 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
18544 type error.
18545
18546 * fontset.c (fontset_add): Return Lisp_Object.
18547
18548 2008-02-01 Dave Love <fx@gnu.org>
18549
18550 * charset.h (charset_ordered_list_tick): Declare extern.
18551
18552 2008-02-01 Kenichi Handa <handa@m17n.org>
18553
18554 The following changes (and some of 2008-02-01 changes of mine) are
18555 for handling syntax, category, and case conversion for unibyte
18556 characters by converting them to multibyte on the fly. With these
18557 changes, we don't have to setup syntax and case tables for unibyte
18558 characters in each language environment.
18559
18560 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
18561 multibyte if necessary.
18562
18563 * bytecode.c (Fbyte_code): Likewise.
18564
18565 * character.h (LEADING_CODE_LATIN_1_MIN)
18566 (LEADING_CODE_LATIN_1_MAX): New macros.
18567 (unibyte_to_multibyte_table): Extern it.
18568 (unibyte_char_to_multibyte): New macro.
18569 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
18570 (CHAR_LEADING_CODE): New macro.
18571 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
18572
18573 * character.c (unibyte_to_multibyte_table): New variable.
18574 (unibyte_char_to_multibyte): Move to character.h and define as macro.
18575 (multibyte_char_to_unibyte): If C is an eight-bit character,
18576 convert it to the corresponding byte value.
18577
18578 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
18579 not 1, signals an error. Update the elements of
18580 unibyte_to_multibyte_table.
18581 (init_charset_once): Initialize unibyte_to_multibyte_table.
18582 (syms_of_charset): Define the charset `iso-8859-1'.
18583
18584 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
18585 as is without converting it to unibyte. In a unibyte buffer,
18586 convert C to multibyte before checking the syntax.
18587
18588 * lisp.h (unibyte_char_to_multibyte): Delete extern.
18589
18590 * minibuf.c (Fminibuffer_complete_word): Use the macro
18591 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
18592
18593 * regex.h (struct re_pattern_buffer): New member target_multibyte.
18594
18595 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
18596 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
18597 that is zero, convert an eight-bit char to multibyte.
18598 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
18599 non-emacs case.
18600 (PATFETCH): Convert an eight-bit char to multibyte.
18601 (HANDLE_UNIBYTE_RANGE): New macro.
18602 (regex_compile): Setup the compiled pattern for multibyte chars
18603 even if the given regex string is unibyte. Use PATFETCH_RAW
18604 instead of PATFETCH in many places. To handle `charset'
18605 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
18606 only for ASCII chars.
18607 (analyse_first) <exactn>: Simplify because the compiled pattern
18608 is multibyte.
18609 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
18610 <charset>: Use CHAR_LEADING_CODE to get leading codes.
18611 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
18612 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
18613 multibyte always 1.
18614 (re_search_2): In emacs, set the locale variable multibyte to 1,
18615 otherwise to 0. New local variable target_multibyte. Check it
18616 to decide the multibyteness of STR1 and STR2. If
18617 target_multibyte is zero, convert unibyte chars to multibyte
18618 before translating and checking fastmap.
18619 (TARGET_CHAR_AND_LENGTH): New macro.
18620 (re_match_2_internal): In emacs, set the locale variable multibyte
18621 to 1, otherwise to 0. New local variable target_multibyte. Check
18622 it to decide the multibyteness of STR1 and STR2. Use
18623 TARGET_CHAR_AND_LENGTH to fetch a character from D.
18624 <charset, charset_not>: If multibyte is nonzero, check fastmap
18625 only for ASCII chars. Call bcmp_translate with
18626 target_multibyte, not with multibyte.
18627 <begline>: Declare the local variable C as `unsigned'.
18628 (bcmp_translate): Change the last arg name to target_multibyte.
18629
18630 * search.c (compile_pattern_1): Don't adjust the multibyteness of
18631 the regexp pattern and the matching target. Set cp->buf.multibyte
18632 to the multibyteness of the regexp pattern. Set
18633 cp->but.target_multibyte to the multibyteness of the matching target.
18634 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
18635 FETCH_STRING_CHAR_ADVANCE.
18636 (Freplace_match): Convert unibyte chars to multibyte.
18637
18638 * syntax.c (char_quoted, back_comment, scan_words)
18639 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
18640 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
18641 unibyte chars to multibyte.
18642 (skip_chars): Delete the arg syntaxp, and move the code for
18643 handling syntaxes to skip_syntaxes. Change callers.
18644 Fix the case that the multibyteness of STRING and the current
18645 buffer doesn't match.
18646 (skip_syntaxes): New function.
18647 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
18648 SINGLE_BYTE_CHAR_P.
18649
18650 2008-02-01 Kenichi Handa <handa@m17n.org>
18651
18652 * xfaces.c (QCfontset): New variable.
18653 (LFACE_FONTSET): New macro.
18654 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
18655 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
18656 (Finternal_set_lisp_face_attribute)
18657 (Finternal_get_lisp_face_attribute): Handle QCfontset.
18658 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
18659 check also LFACE_FONTSET_INDEX.
18660 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
18661 attrs[LFACE_FONT_INDEX].
18662 (syms_of_xfaces): Intern and staticpro QCfontset.
18663
18664 * dispextern.h (enum lface_attribute_index): New member
18665 LFACE_FONTSET_INDEX.
18666
18667 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
18668
18669 2008-02-01 Kenichi Handa <handa@m17n.org>
18670
18671 * coding.c (coding_set_destination): Fix coding->destination for
18672 the case converting a region.
18673 (encode_coding_utf_8): Encode eight-bit chars as single byte.
18674 (encode_coding_object): Fix coding->dst_pos and
18675 coding->dst_pos_byte for the case converting a region.
18676
18677 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
18678
18679 * character.h (BYTE8_STRING): New macro.
18680
18681 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
18682
18683 2008-02-01 Kenichi Handa <handa@m17n.org>
18684
18685 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
18686 characters by octal form.
18687
18688 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
18689
18690 * buffer.h (_fetch_multibyte_char_len): Delete extern.
18691 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
18692 _fetch_multibyte_char_len.
18693 (FETCH_CHAR_AS_MULTIBYTE): New macro.
18694
18695 * casetab.c (set_canon, set_identity, shuffle): Simplify.
18696
18697 * casefiddle.c (casify_object): Simplify. Handle the case that
18698 the case conversion change the byte length.
18699 (casify_region): Likewise.
18700
18701 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
18702
18703 * character.c (_fetch_multibyte_char_len): Delete this variable.
18704 (syms_of_character): Setup Vprintable_chars.
18705
18706 * editfns.c (Fchar_equal): Fix for the unibyte case.
18707 (Finsert_byte): New function.
18708 (syms_of_editfns): Defsubr it.
18709
18710 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
18711 of direct code 0x3ffff.
18712
18713 * search.c (Freplace_match): Fix for the unibyte case.
18714
18715 2008-02-01 Kenichi Handa <handa@m17n.org>
18716
18717 * lread.c (safe_to_load_p): Fix the logic.
18718
18719 * syntax.c (scan_words): Don't treat characters belonging to
18720 different scripts as constituting a word.
18721
18722 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
18723
18724 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
18725
18726 * emacs.c (main): In the case of --unibyte, instead of aborting on
18727 finding non-empty buffer, make it unibyte.
18728
18729 2008-02-01 Kenichi Handa <handa@m17n.org>
18730
18731 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
18732 to create a fontset.
18733
18734 2008-02-01 Dave Love <fx@gnu.org>
18735
18736 * character.c (Funibyte_char_to_multibyte): Doc fix.
18737
18738 * xfns.c [HAVE_STDLIB_H]: Fix last change.
18739
18740 2008-02-01 Kenichi Handa <handa@m17n.org>
18741
18742 * fontset.c (fontset_add): Make the type `int'.
18743 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
18744
18745 * character.c (unibyte_char_to_multibyte)
18746 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
18747 charset_unibyte, not charset_primary.
18748
18749 * charset.h (charset_unibyte): Extern it instead of charset_primary.
18750
18751 * charset.c (charset_unibyte): Rename from charset_primary.
18752 (Funibyte_charset): Rename from Fprimary_charset.
18753 (Fset_unibyte_charset): Rename from Fset_primary_charset.
18754 (syms_of_charset): Adjust for the above changes.
18755
18756 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
18757 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
18758 it->multibyte_p is zero.
18759
18760 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
18761 Delete extern.
18762
18763 2008-02-01 Kenichi Handa <handa@m17n.org>
18764
18765 * coding.c (Fdefine_coding_system_internal): Fix category setting
18766 for a coding system of type iso-2022.
18767
18768 2008-02-01 Kenichi Handa <handa@m17n.org>
18769
18770 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
18771
18772 2008-02-01 Kenichi Handa <handa@m17n.org>
18773
18774 * syntax.c (Vnext_word_boundary_function_table): New variable.
18775 (next-word-boundary-function-table): Declare it as a Lisp variable
18776 in syms_of_syntax.
18777 (scan_words): Call functions in Vnext_word_boundary_function_table
18778 if any.
18779
18780 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
18781
18782 * fontset.c (fs_load_font): If fontp->charset is not negative,
18783 return fontp without setting its members.
18784
18785 2008-02-01 Dave Love <fx@gnu.org>
18786
18787 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
18788
18789 * m/sparc.h (HAVE_ALLOCA): Delete.
18790
18791 * s/irix6-5.h: Don't include strings.h.
18792 (bcopy, bzero, bcmp): Don't undef.
18793
18794 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
18795
18796 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
18797 (TIOCSIGSEND): Don't test IRIX6.
18798 (bcopy, bzero, bcmp): Define conditionally.
18799
18800 2008-02-01 Kenichi Handa <handa@m17n.org>
18801
18802 * buffer.c (Qas, Qmake, Qto): New variables.
18803 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
18804 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
18805
18806 * callproc.c (Fcall_process): Don't call insert_1_both directly if
18807 we are inserting a process output into a multibyte buffer.
18808
18809 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
18810 multibyte_char_to_unibyte.
18811
18812 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
18813 by the primary charset, make it eight-bit char.
18814 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
18815
18816 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
18817 (charset_8_bit__control, charset_8_bit_graphic)
18818 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
18819 (define_charset_internal): New function.
18820 (syms_of_charset): Call define_charset_internal for pre-defined
18821 charsets.
18822
18823 * charset.h (charset_8_bit): Extern it.
18824
18825 * coding.c (make_conversion_work_buffer): Adjust for the change
18826 of Fset_buffer_multibyte.
18827 (encode_coding_raw_text): Increment p0 in the loop.
18828
18829 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
18830
18831 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
18832 for the change of Fset_buffer_multibyte.
18833
18834 * fns.c (Fstring_to_multibyte): New function.
18835 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
18836
18837 2008-02-01 Dave Love <fx@gnu.org>
18838
18839 * xfns.c (x_put_x_image): Declare args.
18840
18841 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
18842 (try_font_list): Declare an arg.
18843
18844 * xdisp.c (message2_nolog, set_message): Declare an arg.
18845
18846 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
18847
18848 * syntax.c (scan_sexps_forward): Declare an arg.
18849
18850 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
18851 Declare an arg.
18852
18853 * lisp.h (Fnew_fontset): Declare.
18854
18855 * keymap.c (push_key_description): Call CHARACTERP correctly.
18856
18857 * fontset.c (fontset_add): Declare args. Call make_number correctly.
18858 (face_for_char): Delete unused vars.
18859 (Fset_fontset_font): Doc fix. Delete unused vars.
18860
18861 * doc.c (Fsubstitute_command_keys): Delete unused vars.
18862
18863 * composite.c (update_compositions): Declare arg.
18864
18865 * cm.c (calccost, cmgoto): Declare args.
18866
18867 * charset.c: Remove `emacs' conditional. Doc fixes.
18868 (map_char_table_for_charset): Declare.
18869
18870 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
18871
18872 * ccl.c: Remove `emacs' conditional.
18873
18874 2008-02-01 Kenichi Handa <handa@m17n.org>
18875
18876 The following changes are to allow specifying multiple font
18877 patterns for a character range (specified by script or charset).
18878
18879 * Makefile.in (abbrev.o): Depend on syntax.h.
18880 (xfaces.o): Depend on charset.h.
18881
18882 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
18883 SINGLE_BYTE_CHAR_P.
18884
18885 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
18886
18887 * character.h (Vchar_script_table): Extern it.
18888
18889 * character.c (Vscript_alist): Delete.
18890 (Vchar_script_table, Qchar_script_table): New variable.
18891 (syms_of_character): Declare Vchar_script_table as a lisp variable
18892 and initialize it.
18893
18894 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
18895 have property char-table-extra-slots, make no extra slot.
18896
18897 * dispextern.h (struct face): Delete member `charset'.
18898 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
18899 SINGLE_BYTE_CHAR_P.
18900 (choose_face_font, lookup_non_ascii_face, font_name_registry):
18901 Add prototypes.
18902 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
18903 (generate_ascii_font_name): Rename from generate_ascii_font.
18904
18905 * fontset.h (get_font_repertory_func): New prototype.
18906 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
18907 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
18908
18909 * fontset.c (Qprepend, Qappend): New variables.
18910 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
18911 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
18912 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
18913 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
18914 (fontset_ref_and_range, fontset_add, reorder_font_vector)
18915 (load_font_get_repertory): New functions.
18916 (fontset_set): Delete.
18917 (fontset_face): New arg FACE. Return face ID, not face.
18918 Complete re-write to handle new fontset structure. Change caller.
18919 (free_face_fontset): Use ASET istead of AREF (X) = Y.
18920 (face_for_char): Don't call lookup_face.
18921 (make_fontset_for_ascii_face): New arg FACE.
18922 (fs_load_font): New arg CHARSET_ID. Don't check
18923 Vfont_encoding_alist here.
18924 (find_font_encoding): New function.
18925 (list_fontsets): Use STRINGP, not ! NILP.
18926 (accumulate_script_ranges): New function.
18927 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
18928 re-written to handle new fontset structure.
18929 (Ffontset_font): Return a copy of element.
18930 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
18931 docstring of font-encoding-alist.
18932
18933 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
18934 (Fset_fotset_font): Fix arguments to 5.
18935
18936 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
18937
18938 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
18939 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
18940 (highlight_trailing_whitespace): Adjust for the change of
18941 lookup_named_face.
18942
18943 * xfaces.c: Include charset.h.
18944 (load_face_font): Delete argument C. Change caller.
18945 (generate_ascii_font_name): Rename from generate_ascii_font.
18946 (font_name_registry): New function.
18947 (cache_face): Store ascii faces before non-ascii faces in buckets.
18948 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
18949 Lookup only ascii faces.
18950 (lookup_non_ascii_face): New function.
18951 (lookup_named_face): Delete argument C. Change caller.
18952 (lookup_derived_face): Delete argument C. Change caller.
18953 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
18954 a string, just call font_list with it.
18955 (choose_face_font): Delete arguments FACE and C. New arg
18956 FONT_SPEC. Change caller.
18957 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
18958 Change caller.
18959 (realize_non_ascii_face): New function.
18960 (realize_x_face): Call load_face_font here.
18961 (realize_tty_face): Delete argument C. Change caller.
18962 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
18963 get a face ID.
18964 (dump_realized_face): Don't print charset of FACE.
18965
18966 * xfns.c (x_set_font): Always call x_new_fontset and
18967 store_frame_parameter.
18968 (Fx_create_frame): Call x_new_fontset, not x_new_font.
18969 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
18970
18971 * xterm.h (x_get_font_repertory): Extern it.
18972
18973 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
18974 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
18975 it->multibyte_p is zero.
18976 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
18977 (x_new_fontset): If FONTSETNAME doesn't match any existing
18978 fontsets, create a new one.
18979 (x_get_font_repertory): New function.
18980
18981 2008-02-01 Kenichi Handa <handa@m17n.org>
18982
18983 * coding.c (Ffind_coding_systems_region_internal): Detect an
18984 ASCII only string correctly.
18985
18986 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
18987 version is 0.
18988
18989 2008-02-01 Kenichi Handa <handa@m17n.org>
18990
18991 * lread.c: Include "coding.h".
18992 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
18993 (load_each_byte, unread_char): New variables.
18994 (readchar_backlog): Delete.
18995 (readchar): Return a character unless load_each_byte is nonzero.
18996 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
18997 cons. If unread_char is not -1, simply return it.
18998 (unreadchar): Handle the case that readcharfun is
18999 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
19000 (read_multibyte): Delete.
19001 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
19002 (read_emacs_mule_char): New functions.
19003 (Fload): Even if the file doesn't have the extension ".elc", if
19004 safe_to_load_p returns a positive version number, assume that the
19005 file contains bytecompiled code. If the version is less than 22,
19006 load the file while decoding multibyte sequences by emacs-mule.
19007 (readevalloop): Don't use readchar_backlog.
19008 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
19009 (Fread_from_string): Pay attention to the case that STREAM is a cons.
19010 (read_escape): Delete the arg BYTEREP.
19011 (read1): Set load_each_byte to 1 temporarily while handling
19012 #@NUMBER. Don't call read_multibyte.
19013 (read_vector): Call Fread with a cons. If readcharfun is
19014 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
19015 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
19016 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
19017 and Qload_force_doc_strings.
19018
19019 2008-02-01 Kenichi Handa <handa@m17n.org>
19020
19021 * xdisp.c (face_before_or_after_it_pos): Call
19022 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
19023
19024 2008-02-01 Kenichi Handa <handa@m17n.org>
19025
19026 * character.h (TRAILING_CODE_P): New macro.
19027 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
19028 (string_char_with_unification): Fix prototype.
19029 (Vscript_alist): Extern it.
19030
19031 * character.c (Vscript_alist): New variable.
19032 (string_char_with_unification, str_as_unibyte)
19033 (string_escape_byte8): Add `const' to local variables.
19034 (syms_of_character): Declare script-alist as a Lisp variable.
19035
19036 * charset.h (Vcharset_ordered_list): Extern it.
19037 (charset_ordered_list_tick): Extern it.
19038 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
19039 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
19040 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
19041 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
19042 (Funify_charset): Adjust for the change of Funify_charset.
19043
19044 * charset.c (charset_ordered_list_tick): New variable.
19045 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
19046 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
19047 deunify intead of unify a charset.
19048 (string_xstring_p): Add `const' to local variables.
19049 (find_charsets_in_text): Add `const' to arguments and local variables.
19050 (encode_char): Adjust for the change of Funify_charset. Fix
19051 detecting of invalid code.
19052 (Fset_charset_priority): Increment charset_ordered_list_tick.
19053 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
19054 and TO_CODE.
19055
19056 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
19057 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
19058 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
19059 (decode_coding_ccl, consume_chars)
19060 (Ffind_coding_systems_region_internal)
19061 (Fcheck_coding_systems_region): Add `const' to local variables.
19062
19063 * print.c (print_object): Use octal form for printing the
19064 contents of a bool vector.
19065
19066 2008-02-01 Dave Love <fx@gnu.org>
19067
19068 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
19069 <version == 20>: Refuse to load.
19070
19071 2008-02-01 Dave Love <fx@gnu.org>
19072
19073 * fns.c: Move coding.h.
19074 (Qcodeset, Qdays, Qmonths): New.
19075 (concat): Use CHARACTERP instead of INTEGERP.
19076 (Flocale_codeset): Delete.
19077 (Flanginfo): New function.
19078 (syms_of_fns): Change accordingly.
19079
19080 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
19081
19082 2008-02-01 Dave Love <fx@gnu.org>
19083
19084 * casetab.c (init_casetab_once, init_casetab_once): Fix
19085 CHAR_TABLE_SET call.
19086
19087 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
19088
19089 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
19090
19091 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
19092 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
19093 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
19094
19095 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
19096
19097 * coding.c (ENCODE_DESIGNATION, decode_eol)
19098 (make_conversion_work_buffer, code_conversion_restore)
19099 (Fdefine_coding_system_internal): Convert Lisp types.
19100 (code_conversion_restore): Use EQ, not ==.
19101 (Fencode_coding_string): Fix code_convert_string call.
19102
19103 * coding.h (code_convert_region): Fix prototype.
19104
19105 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
19106
19107 * fontset.c (fontset_ref, fontset_set, fs_load_font)
19108 (Ffontset_info): Convert Lisp types.
19109
19110 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
19111
19112 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
19113
19114 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
19115
19116 * chartab.c: Include "...h", not <...h> in some cases.
19117
19118 * callproc.c (Fcall_process): Remove unused variables.
19119
19120 2008-02-01 Dave Love <fx@gnu.org>
19121
19122 * coding.c (Fset_coding_system_priority): Allow null arg list.
19123
19124 2008-02-01 Dave Love <fx@gnu.org>
19125
19126 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
19127 (Fself_insert_and_exit): Use CHARACTERP.
19128
19129 * callproc.c (Fcall_process): Remove unused vars.
19130
19131 * xterm.c (XTread_socket): Add extra dead keysyms.
19132
19133 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
19134
19135 * dispextern.h: Remove prototypes for redraw_frame,
19136 redraw_garbaged_frames.
19137
19138 * cmds.c (Fself_insert_command): Use CHARACTERP.
19139
19140 * chartab.c (make_sub_char_table): Remove unused var.
19141 (Fset_char_table_default, Fmap_char_table): Doc fix.
19142
19143 * keymap.c (access_keymap): Remove generic char code.
19144 (push_key_description): Use CHARACTERP.
19145
19146 2008-02-01 Dave Love <fx@gnu.org>
19147
19148 * charset.c: Doc fixes.
19149 (Funify_charset): Extra checking.
19150
19151 2008-02-01 Dave Love <fx@gnu.org>
19152
19153 * lread.c: Remove some unused variables.
19154 (safe_to_load_p): If safe, return the magic number version byte.
19155 (Fload): Maybe use load-with-code-conversion.
19156
19157 2008-02-01 Kenichi Handa <handa@m17n.org>
19158
19159 * category.c (Fmodify_category_entry): Don't modify the contents
19160 of category_set for characters out of the range. Avoid
19161 unnecessary modification.
19162
19163 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
19164 Vchar_unify_table. The default value of the table is now nil.
19165
19166 * character.c (syms_of_character): Setup Vchar_width_table for
19167 eight-bit-control and raw-byte chars.
19168
19169 * charset.h (enum define_charset_arg_index): Delete
19170 charset_arg_parents and add charset_arg_subset and
19171 charset_arg_superset.
19172 (enum charset_attr_index): Delete charset_parents and add
19173 charset_subset and charset_superset.
19174 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
19175 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
19176 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
19177 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
19178 (CHARSET_SUPERSET): New macros.
19179 (charset_work): Extern it.
19180 (ENCODE_CHAR): Use charset_work.
19181 (CHAR_CHARSET_P): Adjust for the change of encoder format.
19182 (map_charset_chars): Extern it.
19183
19184 * charset.c (load_charset_map): Set the default value of encoder
19185 and deunifier char-tables to nil.
19186 (map_charset_chars): Change argument. Change callers. Use
19187 map_char_table_for_charset instead of map_char_table.
19188 (Fmap_charset_chars): New optional args from_code and to_code.
19189 (Fdefine_charset_internal): Adjust for the change of
19190 `define-charset' (:parents -> :subset or :superset).
19191 (charset_work): New variable.
19192 (encode_char, syms_of_charset): Adjust for the change of
19193 Fdefine_charset_internal.
19194 (Ffind_charset_string): Setup the vector `charsets' correctly.
19195
19196 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
19197 the previous change.
19198 (char_table_ref_and_range): Adjust for the above change.
19199 (map_sub_char_table_for_charset): New function.
19200 (map_char_table_for_charset): New function.
19201
19202 * keymap.c (describe_vector): Handle a char-table directly here.
19203 (describe_char_table): Delete.
19204
19205 * lisp.h (map_charset_chars): Delete.
19206
19207 2008-02-01 Dave Love <fx@gnu.org>
19208
19209 * fns.c (count_combining): Comment out (unused).
19210 (Flocale_codeset): New.
19211 (syms_of_fns): Defsubr it.
19212
19213 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
19214 (size_t): Remove.
19215
19216 2008-02-01 Dave Love <fx@gnu.org>
19217
19218 * Makefile.in (chartab.o): Depend on charset.h.
19219
19220 2008-02-01 Kenichi Handa <handa@m17n.org>
19221
19222 * character.c (syms_of_character): Set the default value of
19223 Vprintable_chars to Qnil.
19224
19225 2008-02-01 Dave Love <fx@gnu.org>
19226
19227 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
19228
19229 2008-02-01 Kenichi Handa <handa@m17n.org>
19230
19231 * charset.c (load_charset_map): Handle the case that from < to
19232 correctly.
19233
19234 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
19235 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
19236 Pay attention to raw-8-bit chars.
19237
19238 2008-02-01 Kenichi Handa <handa@m17n.org>
19239
19240 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
19241 It is not bytecompiled now.
19242
19243 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
19244 (charset_jisx0208): New variables.
19245 (Fdefine_charset_internal): Setup them if appropriate.
19246 (init_charset_once): Initialize them to -1.
19247
19248 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
19249 (charset_jisx0208): Extern them.
19250
19251 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
19252 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
19253 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
19254 (setup_iso_safe_charsets): Fix arguments to Fassq.
19255 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
19256 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
19257 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
19258 (encode_coding_iso_2022): Change the 1st arg to
19259 ENCODE_ISO_CHARACTER to a variable.
19260
19261 2008-02-01 Kenichi Handa <handa@m17n.org>
19262
19263 * charset.h (enum define_charset_arg_index): New enums
19264 charset_arg_min_code and charset_arg_max_code.
19265 (struct charset): New member char_index_offset.
19266
19267 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
19268 Take charset->char_index_offset into account.
19269 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
19270 args[charset_arg_max_code]. Setup charset.char_index_offset.
19271 (syms_of_charset): Fix args to Fdefine_charset_internal.
19272
19273 2008-02-01 Dave Love <fx@gnu.org>
19274
19275 * coding.c (decode_coding_utf_8): Reject overlong sequences.
19276
19277 2008-02-01 Dave Love <fx@gnu.org>
19278
19279 * coding.c: Doc fixes.
19280 (Fcoding_system_aliases): Fix return value.
19281 (Qmac): Remove (duplicated) definition.
19282
19283 2008-02-01 Dave Love <fx@gnu.org>
19284
19285 * charset.c (Fcharset_priority_list, Fset_charset_priority):
19286 New functions.
19287
19288 * character.c (Fstring): Doc fix.
19289
19290 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
19291
19292 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
19293 (font-encoding-alist): Doc fix.
19294
19295 2008-02-01 Dave Love <fx@gnu.org>
19296
19297 * term.c (costs_set): Declare static, non-initialized for pcc.
19298 (encode_terminal_code): Remove unused var.
19299
19300 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
19301 for K&R.
19302
19303 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
19304
19305 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
19306 (suffixes): Move out of make_subsidiaries for K&R.
19307
19308 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
19309
19310 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
19311
19312 2008-02-01 Dave Love <fx@gnu.org>
19313
19314 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
19315
19316 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
19317
19318 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
19319
19320 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
19321
19322 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
19323
19324 2008-02-01 Kenichi Handa <handa@m17n.org>
19325
19326 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
19327 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
19328
19329 2008-02-01 Kenichi Handa <handa@m17n.org>
19330
19331 * coding.c (decode_coding_charset): Adjust for the change of
19332 Fdefine_coding_system_internal.
19333 (Fdefine_coding_system_internal): For a coding system of
19334 `charset' type, store a list of charset IDs in
19335 `charset_attr_charset_valids' element of coding attributes.
19336
19337 2008-02-01 Kenichi Handa <handa@m17n.org>
19338
19339 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
19340 (emacs_mule_char): New arg src. Delete arg `composition'. Change
19341 caller. Handle 2-byte and 3-byte charsets correctly.
19342 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
19343 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
19344 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
19345 (DECODE_EMACS_MULE_21_COMPOSITION): Call
19346 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
19347 sequence.
19348 (decode_coding_emacs_mule): Handle composition correctly. Rewind
19349 `src' and `consumed_chars' correctly before calling emacs_mule_char.
19350 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
19351 and alt&rule composition.
19352 (decode_coding_iso_2022): Handle composition correctly.
19353 (init_coding_once): Setup emacs_mule_bytes for private charsets.
19354
19355 * charset.c (Fdefine_charset_internal): Fix bug for the case of
19356 re-defining a charset. If the charset has :emacs-mule-id, setup
19357 emacs_mule_bytes.
19358 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
19359
19360 2008-02-01 Kenichi Handa <handa@m17n.org>
19361
19362 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
19363 (encode_coding_big5, encode_coding_charset): If coding requires safe
19364 encoding, produce a character specified by
19365 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
19366
19367 2008-02-01 Dave Love <fx@gnu.org>
19368
19369 * xterm.c (XSetIMValues): Declare.
19370
19371 * process.c: Conditionally include sys/wait.h, pty.h.
19372
19373 * print.c (print_object): Fix print format for 64-bit systems.
19374
19375 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
19376
19377 * buffer.c (emacs_strerror): Declare.
19378
19379 * fontset.c (Fclear_face_cache): Declare.
19380 (accumulate_font_info): Comment-out (unused).
19381 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
19382 variables.
19383
19384 * character.h (string_escape_byte8): Declare.
19385
19386 * charset.c (load_charset_map, load_charset_map_from_file): Remove
19387 unused vars.
19388 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
19389 (Fmap_charset_chars): Doc fix.
19390
19391 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
19392 (Fset_coding_system_priority, Fset_coding_system_priority)
19393 (Fdefine_coding_system_internal): Doc fix.
19394
19395 2008-02-01 Dave Love <fx@gnu.org>
19396
19397 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
19398
19399 2008-02-01 Kenichi Handa <handa@m17n.org>
19400
19401 * character.c (string_escape_byte8): Make multibyte string with
19402 correct size.
19403
19404 * charset.c (Fmake_char): Delete unnecessary code.
19405
19406 2008-02-01 Kenichi Handa <handa@m17n.org>
19407
19408 * xfns.c (x_encode_text): Allocate coding.destination here, and
19409 call encode_coding_object with dst_object Qnil.
19410
19411 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
19412 multibyte form correctly.
19413
19414 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
19415 against Vfont_encoding_alist.
19416
19417 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
19418 handling of charset list.
19419 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
19420 (decode_coding_object): Move point to coding->dst_pos before
19421 calling post-read-conversion function.
19422 (encode_coding_object): Give correct arguments to
19423 pre-write-conversion. Ignore the return value of
19424 pre-write-conversion function. Pay attention to the case that
19425 pre-write-conversion changes the current buffer. If dst_object is
19426 Qt, even if coding->src_bytes is zero, allocate at least one byte
19427 to coding->destination.
19428
19429 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
19430
19431 * charset.c (Fmake_char): Make it more backward compatible.
19432 (Fmap_charset_chars): Fix docstring.
19433
19434 2008-02-01 Dave Love <fx@gnu.org>
19435
19436 * coding.c: Doc fixes.
19437 (Fdefine_coding_system_alias): Use names, not symbols, in
19438 coding-system-alist.
19439
19440 2008-02-01 Kenichi Handa <handa@m17n.org>
19441
19442 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
19443 of calling free_realized_face.
19444
19445 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
19446
19447 * charset.c (read_hex): Don't treat SPC as a comment starter.
19448 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
19449 (Fdecode_char): Fix typo.
19450
19451 2008-02-01 Kenichi Handa <handa@m17n.org>
19452
19453 * charset.h (struct charset): New member `code_space_mask'.
19454
19455 * coding.c (coding_set_source): Delete the local variable beg_byte.
19456 (encode_coding_charset, Fdefine_coding_system_internal):
19457 Delete the local variable charset.
19458 (Fdefine_coding_system_internal): Setup
19459 attrs[coding_attr_charset_valids] correctly.
19460
19461 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
19462 member to check if CODE is valid or not.
19463 (Fdefine_charset_internal): Initialize `code_space_mask' member.
19464 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
19465 is within the range of charset->min_code and carset->max_code.
19466
19467 2008-02-01 Dave Love <fx@gnu.org>
19468
19469 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
19470
19471 * dispextern.h (generate_ascii_font): Fix return type.
19472
19473 * xfaces.c (generate_ascii_font): Fix arg declaration.
19474
19475 * coding.c (coding_inherit_eol_type)
19476 (Fset_terminal_coding_system_internal)
19477 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
19478
19479 2008-02-01 Kenichi Handa <handa@m17n.org>
19480
19481 * coding.c (decode_coding_charset, encode_coding_charset): Handle
19482 multiple charsets correctly.
19483
19484 2008-02-01 Kenichi Handa <handa@m17n.org>
19485
19486 * search.c (boyer_moore): Fix handling of multibyte character
19487 translation.
19488
19489 * xdisp.c (display_mode_element): When the variable `elt' is
19490 changed, update `this' and `lisp_string'.
19491
19492 2008-02-01 Kenichi Handa <handa@m17n.org>
19493
19494 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
19495
19496 * callproc.c (Fcall_process): Be sure to give the current buffer
19497 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
19498
19499 * charset.c (struct charset_map_entries): New struct.
19500 (load_charset_map): Rename from parse_charset_map. New args
19501 entries and n_entries. Change caller.
19502 (load_charset_map_from_file): Rename from load_charset_map.
19503 Change caller. New arg control_flag. Call load_charset_map at
19504 the tail.
19505 (load_charset_map_from_vector): New function.
19506 (Fdefine_charset_internal): Setup charset.compact_codes_p.
19507 (encode_char): If the charset is compact, change a character index
19508 to a code point.
19509
19510 * coding.c (coding_alloc_by_making_gap): Check the case that the
19511 source and destination are the same correctly.
19512 (decode_coding_raw_text): Set coding->consumed_char and
19513 coding->consumed to 0.
19514 (produce_chars): If coding->chars_at_source is nonzero, update
19515 coding->consumed_char and coding->consumed before calling
19516 alloc_destination.
19517 (Fdefine_coding_system_alias): Register ALIAS in
19518 Vcoding_system_alist.
19519 (syms_of_coding): Define `no-conversion' coding system at the tail.
19520
19521 * fileio.c (Finsert_file_contents): Set coding_system instead of
19522 val. If the current buffer is multibyte, always call
19523 decode_coding_gap.
19524
19525 * xfaces.c (try_font_list): Give higher priority to fontset's
19526 family than face's family.
19527
19528 2008-02-01 Kenichi Handa <handa@m17n.org>
19529
19530 * callproc.c (Fcall_process): Be sure to give the current buffer
19531 to decode_coding_c_string.
19532
19533 * xfaces.c (try_font_list): Give a family specified in a fontset
19534 higher priority than a family specified in a face.
19535
19536 2008-02-01 Kenichi Handa <handa@m17n.org>
19537
19538 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
19539 Fix arguments to insert_from_buffer.
19540
19541 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
19542
19543 2008-02-01 Kenichi Handa <handa@m17n.org>
19544
19545 * coding.c (produce_chars): Set the variable `multibytep' correctly.
19546 (decode_coding_gap): Set coding->dst_multibyte correctly.
19547
19548 2008-02-01 Kenichi Handa <handa@m17n.org>
19549
19550 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
19551 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
19552 (encode_coding_utf_16): Substitute coding->default_char for
19553 non-Unicode characters.
19554 (decode_coding): Don't call record_insert here.
19555 (setup_coding_system): Initialize `surrogate' of
19556 coding->spec.utf_16 to 0.
19557 (EMIT_ONE_BYTE): Fix for multibyte case.
19558
19559 * insdel.c (insert_from_gap): Call record_insert.
19560
19561 2008-02-01 Kenichi Handa <handa@m17n.org>
19562
19563 * casefiddle.c (casify_region): Fix multibyte case.
19564
19565 * character.c (c_string_width): Add return type `int'.
19566 (char_string_with_unification): Delete arg ADVANCED.
19567
19568 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
19569 (CHAR_STRING): Adjust for the change of char_string_with_unification.
19570 (CHAR_STRING_ADVANCE): Make it do-while statement.
19571
19572 * chartab.c (sub_char_table_set_range): Optimize for the case
19573 DEPTH == 3. Add workaround code for a GCC optimization bug.
19574
19575 * charset.c (parse_charset_map): Remove an unused variable.
19576
19577 * coding.c: Delete unused variables.
19578
19579 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
19580 earlier. If inserted is zero and the coding system doesn't
19581 require flushing, don't call decode_coding_gap.
19582
19583 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
19584
19585 2008-02-01 Kenichi Handa <handa@m17n.org>
19586
19587 The following changes are for using Unicode as an internal
19588 character model, and use UTF-8 format for buffer/string
19589 representation.
19590
19591 * .gdbinit (xchartable): Adjust for the change of char table structure.
19592 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
19593
19594 * Makefile.in (obj): Add character.o and chartab.o.
19595 (lisp, shortlisp): Remove utf-8.elc.
19596 (*.o): For many files, change dependency on charset.h to
19597 character.h, and add dependency on character.h.
19598 (character.o, chartab.o): New targets.
19599
19600 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
19601 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
19602 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
19603 of "charset.h".
19604
19605 * dired.c, filelock.c: Include "character.h".
19606
19607 * alloc.c: Include "character.h" instead of "charset.h".
19608 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
19609 (syms_of_alloc): Remove defsubr for Smake_char_table.
19610
19611 * buffer.c: Include "character.h" instead of "charset.h", don't
19612 include "coding.h".
19613 (Fset_buffer_multibyte): Adjust for UTF-8.
19614
19615 * buffer.h: EXFUN Fbuffer_live_p.
19616
19617 * callproc.c: Include "character.h" instead of "charset.h".
19618 (Fcall_process): Big change for the new code-conversion APIs.
19619
19620 * casetab.c: Include "character.h" instead of "charset.h".
19621 (set_canon, set_identity, shuffle): Adjust for the new
19622 map_char_table spec.
19623 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
19624 accessing the char table structure.
19625
19626 * chartab.c: New file that implements char table.
19627
19628 * category.c: Include "character.h".
19629 (copy_category_entry): New function.
19630 (copy_category_table): Call map_char_table and copy_category_entry.
19631 (Fmake_category_table): Initialize all top-level slots.
19632 (char_category_set): New function.
19633 (modify_lower_category_set): Delete.
19634 (Fmodify_category_entry): Call char_table_ref_and_range.
19635
19636 * category.h (CATEGORY_SET): Just call char_category_set.
19637
19638 * ccl.c: Include "character.h".
19639 (Qccl, Qcclp): New variables.
19640 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
19641 it's less than 256.
19642 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
19643 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
19644 and DST type.
19645 (ccl_driver): Change types of argument, adjust code accordingly.
19646 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
19647 ccl_driver.
19648 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
19649
19650 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
19651 New members src_multibyte, dst_multibyte, consumed, and produced.
19652 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
19653 (CODING_SPEC_CCL_PROGRAM): New macro.
19654 (ccl_driver): Update prototype.
19655 (Qccl, Qcclp, Fccl_program_p): Extern them.
19656 (CHECK_CCL_PROGRAM): New macro.
19657
19658 * character.c, character.h, chartab.c: New files.
19659
19660 * charset.c: Mostly re-written. Move character and multibyte sequence
19661 handling codes to character.c.
19662
19663 * charset.h: Mostly re-written. Move character and multibyte sequence
19664 handling codes to character.h.
19665
19666 * coding.c, coding.h: Mostly re-written.
19667
19668 * composite.c: Include "character.h" instead of "charset.h".
19669 (CHAR_WIDTH): Move to character.h.
19670 (HASH_KEY, HASH_VALUE): Delete.
19671
19672 * composite.h (enum composition_method): Change order of enumeration
19673 symbols.
19674
19675 * data.c: Include "character.h" instead of "charset.h".
19676 (Faref): Call CHAR_TABLE_REF for a char table.
19677 (Faset): Call CHAR_TABLE_SET for a char table.
19678
19679 * dispextern.h (free_realized_face, check_face_attribytes)
19680 (generate_ascii_font): Extern them.
19681 (free_realized_multibyte_face): Delete extern.
19682
19683 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
19684 table structure.
19685
19686 * editfns.c: Include "character.h" instead of "charset.h".
19687 (Fchar_to_string): Always call CHAR_STRING.
19688
19689 * emacs.c (main): Call init_charset_once, init_charset,
19690 syms_of_chartab, and syms_of_character.
19691
19692 * fileio.c: Include "character.h" instead of "charset.h".
19693 (Finsert_file_contents): Big change for the new code-conversion API.
19694 (choose_write_coding_system, Fwrite_region): Likewise.
19695 (build_annotations_2): Delete.
19696 (e_write): Big change for the new code-conversion API.
19697
19698 * fns.c: Include "character.h" instead of "charset.h".
19699 (copy_sub_char_table): Move to chartab.c.
19700 (Fcopy_sequence): Call copy_char_table for a char table.
19701 (concat): Delete codes calling count_multibyte.
19702 (string_char_to_byte, string_byte_to_char): Adjust for the new
19703 multibyte form.
19704 (internal_equal): Adjust for the change of char table structure.
19705 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
19706 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
19707 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
19708 (char_table_translate, optimize_sub_char_table)
19709 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
19710 chartab.c.
19711 (char_table_ref_and_index): Delete.
19712 (HASH_KEY, HASH_VALUE): Move to lisp.h.
19713 (Fmd5): Call preferred_coding_system instead of accessing
19714 Vcoding_category_list. Adjust for the new code-conversion API.
19715 (syms_of_fns): Move defsubr for char table related functions to
19716 chartab.c.
19717
19718 * fontset.c: Mostly re-written.
19719
19720 * fontset.h (struct font_info): Change type of the member encoding_type.
19721 (enum FONT_SPEC_INDEX): New enum.
19722 (fontset_font_pattern, fs_load_font): Update prototype.
19723 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
19724
19725 * indent.c: Include "character.h" instead of "charset.h".
19726 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
19727
19728 * insdel.c: Include "character.h" instead of "charset.h".
19729 (copy_text): Don't refer to Vnonascii_translation_table.
19730 (insert_from_gap): New function.
19731
19732 * keyboard.c: Include "character.h" instead of "charset.h".
19733 (command_loop_1): Never call direct_output_forward_char before
19734 a non-ASCII character.
19735 (read_char): If Vkeyboard_translate_table is a char table, always
19736 translate a character.
19737
19738 * keymap.c: Include "character.h".
19739 (store_in_keymap): Handle the case that IDX is a cons.
19740 (Fdefine_key): Handle the case that KEY is a cons and the car part
19741 is also a cons (range).
19742 (push_key_description): Adjust for the new character code.
19743 (describe_vector): Call describe_char_table for a char table.
19744 (describe_char_table): New function.
19745
19746 * keymap.h (describe_char_table): Extern it.
19747
19748 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
19749 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
19750 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
19751 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
19752 Delete.
19753 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
19754 structure.
19755 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
19756 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
19757 (CHARTAB_SIZE_BITS_3): New macros.
19758 (chartab_size): Extern it.
19759 (struct Lisp_Char_Table): Re-design.
19760 (struct Lisp_Sub_Char_Table): New structure.
19761 (HASH_KEY, HASH_VALUE): Move from fns.c.
19762 (CHARACTERBITS): Define as 22.
19763 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
19764 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
19765 (GC_SUB_CHAR_TABLE_P): New macro.
19766 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
19767 (code_convert_string_norecord): Deleted extern.
19768 (init_character_once, syms_of_character, init_charset)
19769 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
19770
19771 * lread.c: Include "character.h".
19772 (read_multibyte): New arg NBYTES.
19773 (read_escape): Change the meaning of returned *BYTEREP.
19774 (to_multibyte): Delete.
19775 (read1): Adjust the handling of char table and string.
19776
19777 * print.c: Include "character.h" instead of "charset.h".
19778 (print_string): Convert 8-bit raw bytes to octal form by
19779 string_escape_byte8.
19780 (print_object): Adjust for the new multibyte form. Print 8-bit
19781 raw bytes always in octal form. Handle sub char table correctly.
19782
19783 * process.c: Include "character.h" instead of "charset.h".
19784 (read_process_output, send_process): Adjust for the new
19785 code-conversion API.
19786
19787 * puresize.h (BASE_PURESIZE): Increase.
19788
19789 * regex.c: Include "character.h" instead of "charset.h".
19790 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
19791 (regex_compile): Accept a range whose starting and ending
19792 character have different leading bytes.
19793 (analyse_first): Adjust for the above change.
19794
19795 * search.c: Include "character.h" instead of "charset.h".
19796 (search_buffer, boyer_moore): Adjust for the new multibyte form.
19797 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
19798
19799 * syntax.c: Include "character.h" instead of "charset.h".
19800 (syntax_parent_lookup): Delete.
19801 (Fmodify_syntax_entry): Accept a cons as CHAR.
19802 (skip_chars): Adjust for the new multibyte form.
19803 (init_syntax_once): Call char_table_set_range instead of directly
19804 accessing the structure of a char table.
19805
19806 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
19807 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
19808 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
19809 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
19810
19811 * term.c: Include "buffer.h" and "character.h".
19812 (encode_terminal_code, write_glyphs): Adjust for the new
19813 code-conversion API.
19814 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
19815
19816 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
19817
19818 * xdisp.c: Include "character.h".
19819 (get_next_display_element): Adjust for the new multibyte form.
19820 (disp_char_vector): Adjust for the new char table structure.
19821 (decode_mode_spec_coding): Adjust for the new structure of
19822 coding system.
19823 (decode_mode_spec): Adjust for the new code-conversion API.
19824
19825 * xfaces.c: Include "character.h" instead of "charset.h".
19826 (load_face_font): Adjust for the change of choose_face_font and
19827 FS_LOAD_FONT.
19828 (generate_ascii_font): New function.
19829 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
19830 (set_font_frame_param): Adjust for the change of choose_face_font.
19831 (free_realized_face): Make it public.
19832 (free_realized_faces_for_fontset): Rename from
19833 free_realized_multibyte_face. Free also faces realized for ASCII.
19834 (choose_face_font): Change arguments. Adjust for the change of
19835 fontset_font_pattern and FS_LOAD_FONT.
19836
19837 * xfns.c: Include "character.h".
19838 (x_encode_text): Adjust for the new code-conversion API.
19839
19840 * xselect.c: Don't include "charset.h".
19841 (selection_data_to_lisp_data): Adjust for the new code conversion API.
19842
19843 * xterm.c: Include "character.h".
19844 (x_encode_char): New argument CHARSET. Change caller.
19845 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
19846 Call ENCODE_CHAR instead of SPLIT_CHAR.
19847 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
19848 CHAR_WIDTH instead of CHARSET_WIDTH.
19849 (XTread_socket): Adjust for the new code-conversion API.
19850 (x_new_font): Adjust for the change of FS_LOAD_FONT.
19851 (x_load_font): Adjust for the change of struct font.
19852
19853 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
19854
19855 * xfaces.c (face_at_buffer_position): Remove unused vars.
19856
19857 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19858
19859 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
19860 Fix overflow checking.
19861
19862 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19863
19864 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
19865 Cancel previous change.
19866
19867 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
19868
19869 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
19870 ccl->eight_bit_control. Fix check for buffer overflow.
19871 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
19872 (ccl_driver): Initialize extra_bytes to 0.
19873
19874 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
19875
19876 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
19877 return it ORed with ctrl_modifier.
19878
19879 2008-01-29 Miles Bader <miles@gnu.org>
19880
19881 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
19882
19883 2008-01-28 Jason Rumney <jasonr@gnu.org>
19884
19885 * w32.c (stat): Don't double check for networked drive.
19886
19887 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
19888
19889 * window.c (run_window_configuration_change_hook): New function.
19890 Code extracted from set_window_buffer. Set the selected frame.
19891 (set_window_buffer): Use it.
19892 * window.h (run_window_configuration_change_hook): Declare.
19893 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
19894
19895 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
19896
19897 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
19898
19899 * Makefile.in: Remove references to unused macros.
19900
19901 2008-01-26 Eli Zaretskii <eliz@gnu.org>
19902
19903 * w32.c (g_b_init_get_sid_sub_authority)
19904 (g_b_init_get_sid_sub_authority_count): New static variables.
19905 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
19906 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
19907 (init_user_info): Use them to retrieve uid and gid.
19908 Use 500/513, the Windows defaults, as Administrator's uid/gid.
19909 (fstat): Use pw_uid and pw_gid from the_passwd structure for
19910 st_uid and st_gid of the file.
19911
19912 2008-01-26 Jason Rumney <jasonr@gnu.org>
19913
19914 * w32.c (logon_network_drive): New function.
19915 (stat): Use it.
19916
19917 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
19918
19919 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
19920 invisible text covered with an ellipsis.
19921
19922 2008-01-25 Richard Stallman <rms@gnu.org>
19923
19924 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
19925 jump back to beginning. Move some other initializations after that.
19926 (Qwindow_text_change_functions, Vwindow_text_change_functions):
19927 New variables.
19928 (syms_of_xdisp): Init them.
19929
19930 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
19931
19932 * buffer.c (reset_buffer_local_variables):
19933 Implement `permanent-local-hook'.
19934 (Qpermanent_local_hook): New variable.
19935 (syms_of_buffer): Init and staticpro it.
19936
19937 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
19938
19939 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
19940
19941 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
19942
19943 * fns.c (Fclrhash): Return TABLE.
19944
19945 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19946
19947 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
19948 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
19949 is set even without positional changes.
19950 (x_scroll_bar_clear): Set bar->redraw_needed_p.
19951
19952 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
19953
19954 2008-01-23 Jason Rumney <jasonr@gnu.org>
19955
19956 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
19957
19958 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
19959 the unicode range available in MULE by locale-coding-system.
19960 Improve dbcs lead byte detection. Set event timestamp and modifiers
19961 earlier.
19962
19963 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19964
19965 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
19966 [MAC_OSX] (init_mac_osx_environment): Initialize it.
19967 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
19968 when used on child processes.
19969
19970 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
19971
19972 * dbusbind.c (Fdbus_method_return_internal): Rename from
19973 Fdbus_method_return.
19974 (Fdbus_unregister_object): Move to dbus.el.
19975 (Fdbus_call_method, Fdbus_method_return_internal)
19976 (Fdbus_send_signal): Improve debug messages.
19977
19978 2008-01-20 Martin Rudalics <rudalics@gmx.at>
19979
19980 * undo.c (undo_inhibit_record_point): New variable.
19981 (syms_of_undo): Initialize it.
19982 (record_point): Don't record point when undo_inhibit_record_point
19983 is set.
19984
19985 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
19986
19987 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
19988
19989 * xdisp.c (Qauto_hscroll_mode): New var.
19990 (syms_of_xdisp): Initialize it.
19991 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
19992 window's buffer.
19993 (hscroll_windows): Don't check automatic_hscrolling_p here.
19994
19995 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
19996 vscroll if we're setting window-buffer to the value it already has.
19997
19998 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
19999
20000 * m/intel386.h: Remove references to XENIX.
20001
20002 2008-01-17 Andreas Schwab <schwab@suse.de>
20003
20004 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
20005 instead of HAVE_X86_64_LIB64_DIR.
20006 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
20007
20008 2008-01-17 Glenn Morris <rgm@gnu.org>
20009
20010 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
20011 to HAVE_X86_64_LIB64_DIR.
20012
20013 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
20014
20015 * s/irix3-3.h:
20016 * s/irix4-0.h:
20017 * s/386-ix.h:
20018 * s/domain.h:
20019 * s/hpux9-x11r4.h:
20020 * s/hpux9shxr4.h: Remove files for systems no longer supported.
20021
20022 * sysdep.c: Remove code containing references to symbols defined
20023 by unsupported systems.
20024
20025 2008-01-16 Glenn Morris <rgm@gnu.org>
20026
20027 * coding.c (select-safe-coding-system-function): Doc fix.
20028
20029 2008-01-15 Glenn Morris <rgm@gnu.org>
20030
20031 * config.in: Revert 2008-01-13 change: this is a generated file.
20032
20033 2008-01-13 Tom Tromey <tromey@redhat.com>
20034
20035 * lisp.h: Fix typo.
20036
20037 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
20038
20039 * m/sequent-ptx.h:
20040 * m/sequent.h:
20041 * s/ptx.h:
20042 * s/ptx4-2.h:
20043 * s/ptx4.h: Remove files for systems no longer supported.
20044
20045 * callproc.c (Fcall_process): Fix previous change.
20046
20047 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
20048
20049 * unexsunos4.c: Remove file, system not supported anymore.
20050
20051 * m/mips.h:
20052 * m/intel386.h:
20053 * callproc.c:
20054 * config.in:
20055 * ecrt0.c:
20056 * emacs.c:
20057 * fileio.c:
20058 * frame.c:
20059 * getpagesize.h:
20060 * keyboard.c:
20061 * lread.c:
20062 * process.c:
20063 * puresize.h:
20064 * sysdep.c:
20065 * systty.h:
20066 * syswait.h:
20067 * unexec.c:
20068 * xdisp.c:
20069 * alloc.c: Remove code containing references to symbols defined by
20070 unsupported systems.
20071
20072 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
20073
20074 * coding.c (detect_coding_mask): Fix previous change.
20075
20076 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
20077
20078 * coding.c (detect_coding_iso2022): New arg
20079 latin_extra_code_state. Allow Latin extra codes only
20080 when *latin_extra_code_state is nonzero.
20081 (detect_coding_mask): If there is a NULL byte, detect the encoding
20082 as UTF-16 or binary. If Latin extra codes exist, detect the
20083 encoding as ISO-2022 only when there's no other proper encoding is
20084 found.
20085
20086 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20087
20088 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
20089 #ifdef MAC_OS.
20090
20091 2008-01-08 Richard Stallman <rms@gnu.org>
20092
20093 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
20094
20095 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
20096
20097 * keyboard.c (parse_menu_item): Don't enclose key bindings on
20098 menu bar in parentheses.
20099
20100 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
20101
20102 * m/7300.h:
20103 * m/acorn.h:
20104 * m/alliant-2800.h:
20105 * m/alliant.h:
20106 * m/alliant1.h:
20107 * m/alliant4.h:
20108 * m/altos.h:
20109 * m/amdahl.h:
20110 * m/apollo.h:
20111 * m/att3b.h:
20112 * m/aviion-intel.h:
20113 * m/aviion.h:
20114 * m/celerity.h:
20115 * m/clipper.h:
20116 * m/cnvrgnt.h:
20117 * m/convex.h:
20118 * m/cydra5.h:
20119 * m/delta88k.h:
20120 * m/dpx2.h:
20121 * m/dual.h:
20122 * m/elxsi.h:
20123 * m/f301.h:
20124 * m/gould-np1.h:
20125 * m/gould.h:
20126 * m/i860.h:
20127 * m/ibmps2-aix.h:
20128 * m/ibmrt-aix.h:
20129 * m/ibmrt.h:
20130 * m/irist.h:
20131 * m/is386.h:
20132 * m/isi-ov.h:
20133 * m/mega68.h:
20134 * m/mg1.h:
20135 * m/news-r6.h:
20136 * m/news-risc.h:
20137 * m/news.h:
20138 * m/nh3000.h:
20139 * m/nh4000.h:
20140 * m/ns16000.h:
20141 * m/ns32000.h:
20142 * m/nu.h:
20143 * m/orion.h:
20144 * m/orion105.h:
20145 * m/paragon.h:
20146 * m/pfa50.h:
20147 * m/plexus.h:
20148 * m/pyramid.h:
20149 * m/pyrmips.h:
20150 * m/sh3el.h:
20151 * m/sps7.h:
20152 * m/sr2k.h:
20153 * m/stride.h:
20154 * m/sun1.h:
20155 * m/sun2.h:
20156 * m/sun3-68881.h:
20157 * m/sun3-fpa.h:
20158 * m/sun3-soft.h:
20159 * m/sun3.h:
20160 * m/sun386.h:
20161 * m/symmetry.h:
20162 * m/tad68k.h:
20163 * m/tahoe.h:
20164 * m/targon31.h:
20165 * m/tek4300.h:
20166 * m/tekxd88.h:
20167 * m/tower32.h:
20168 * m/tower32v3.h:
20169 * m/ustation.h:
20170 * m/wicat.h:
20171 * m/xps100.h:
20172 * s/cxux.h:
20173 * s/cxux7.h:
20174 * s/dgux.h:
20175 * s/dgux4.h:
20176 * s/dgux5-4-3.h:
20177 * s/dgux5-4r2.h:
20178 * s/esix.h:
20179 * s/esix5r4.h:
20180 * s/hiuxmpp.h:
20181 * s/hiuxwe2.h:
20182 * s/iris3-5.h:
20183 * s/iris3-6.h:
20184 * s/isc2-2.h:
20185 * s/isc3-0.h:
20186 * s/isc4-0.h:
20187 * s/isc4-1.h:
20188 * s/newsos5.h:
20189 * s/newsos6.h:
20190 * s/osf1.h:
20191 * s/osf5-0.h:
20192 * s/riscix1-1.h:
20193 * s/riscix12.h:
20194 * s/sco4.h:
20195 * s/sco5.h:
20196 * s/sunos4-0.h:
20197 * s/sunos4-1.h:
20198 * s/sunos413.h:
20199 * s/sunos4shr.h:
20200 * s/umax.h:
20201 * s/unipl5-2.h:
20202 * s/xenix.h:
20203 * cxux-crt0.s:
20204 * unexapollo.c:
20205 * unexconvex.c:
20206 * unexenix.c:
20207 * unexsni.c: Remove files for systems no longer supported.
20208
20209 * m/intel386.h: Remove references to unsupported systems.
20210
20211 * w32.c (get_emacs_configuration): Remove reference to i860.
20212
20213 * sysdep.c: Remove dead code.
20214
20215 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
20216
20217 * s/rtu.h:
20218 * m/masscomp.h: Remove files. Platform is obsolete.
20219
20220 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
20221
20222 * dbusbind.c (Fdbus_method_return): New function.
20223 (xd_read_message): Add the serial number to the event.
20224 (Fdbus_register_method): Activate the function.
20225
20226 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
20227
20228 * keyboard.c (read_key_sequence): Fix typo.
20229
20230 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
20231
20232 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
20233 (xd_signature, xd_append_arg): Handle element type detection for
20234 empty arrays.
20235 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
20236 SDATA () calls; this must be solved more general.
20237 (Fdbus_register_signal): Use SBYTES instead of strlen.
20238
20239 2008-01-03 Magnus Henoch <magnus@zemdatav>
20240
20241 * dbusbind.c (xd_append_arg): Use unsigned char instead of
20242 unsigned int for byte values (necessary for big-endian platform).
20243 (Fdbus_call_method): Handle the case of no returned arguments.
20244
20245 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
20246
20247 * dbusbind.c (xd_read_message): Use non-static input_event struct.
20248
20249 2007-12-31 Magnus Henoch <mange@freemail.hu>
20250
20251 * dbusbind.c (xd_signature): Signature of variant is just "v".
20252
20253 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
20254
20255 * dbusbind.c: Fix several errors and compiler warnings.
20256 Reported by Tom Tromey <tromey@redhat.com>.
20257 (XD_ERROR, XD_DEBUG_MESSAGE)
20258 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
20259 (xd_append_arg): Part for basic D-Bus types rewritten.
20260 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
20261 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
20262 appropriate.
20263 (xd_read_message): Return Qnil. Don't signal an error; it is not
20264 useful during event reading.
20265 (Fdbus_register_signal): Signal an error if the check for
20266 FUNCTIONP fails.
20267 (Fdbus_register_method): New function. The implementation is not
20268 complete, the call of the function signals an error therefore.
20269 (Fdbus_unregister_object): New function, renamed from
20270 Fdbus_unregister_signal. The initial check signals an error, if
20271 the object is not well formed.
20272
20273 2007-12-30 Richard Stallman <rms@gnu.org>
20274
20275 * textprop.c (get_char_property_and_overlay):
20276 Signal error if POSITION is out of range in a buffer.
20277
20278 2007-12-29 Martin Rudalics <rudalics@gmx.at>
20279
20280 * w32fns.c (Fx_create_frame): Make copy of frame parameters
20281 because the original parameters are in pure storage now.
20282
20283 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20284
20285 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
20286
20287 2007-12-22 Eli Zaretskii <eliz@gnu.org>
20288
20289 * callint.c (syms_of_callint) <command-history>: Add reference to
20290 history-length in the doc string.
20291
20292 2007-12-17 Jason Rumney <jasonr@gnu.org>
20293
20294 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
20295 before passing as wParam.
20296
20297 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
20298
20299 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
20300 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
20301 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
20302 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
20303 as number.
20304 (Fdbus_call_method): Fix docstring.
20305
20306 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
20307
20308 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
20309 New macros.
20310 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
20311 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
20312 Simplify.
20313 (xd_signature): New function.
20314 (xd_append_arg): Compute also signatures. Major rewrite.
20315 (xd_retrieve_arg): Make debug messages friendly.
20316 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
20317 Check for signatures of arguments.
20318
20319 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
20320
20321 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
20322 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
20323 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
20324 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
20325 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
20326 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
20327 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
20328 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
20329 (xd_retrieve_value): Remove. Functionality included in ...
20330 (xd_append_arg): New function.
20331 (Fdbus_call_method, Fdbus_send_signal): Apply it.
20332
20333 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
20334
20335 * dbusbind.c (top): Include <stdio.h>.
20336 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
20337 dbus_message_new_method_call and dbus_message_new_signal.
20338 (Fdbus_register_signal): Rename unique_name to uname.
20339 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
20340 non-existing unique name. Fix typos in matching rule. Return an
20341 object which is useful in Fdbus_unregister_signal.
20342 (Fdbus_unregister_signal): Reimplementation, in order to remove
20343 only the corresponding entry.
20344 (Vdbus_registered_functions_table): Change the order of entries.
20345 Apply these changes in xd_read_message and Fdbus_register_signal.
20346
20347 2007-12-16 Andreas Schwab <schwab@suse.de>
20348
20349 * fileio.c (Finsert_file_contents): Fix overflow check to not
20350 depend on undefined integer overflow.
20351
20352 2007-12-14 Jason Rumney <jasonr@gnu.org>
20353
20354 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
20355 for characters above 127.
20356
20357 2007-12-13 Jason Rumney <jasonr@gnu.org>
20358
20359 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
20360 before dereferencing array.
20361 (lookup_vk_code): Remove zero comparison.
20362
20363 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
20364
20365 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
20366 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
20367 Use `unsigned int' instead of `uint'.
20368 (xd_read_message, Fdbus_register_signal): Split expressions into
20369 multiple lines before operators "&&" and "||", according to the
20370 GNU Coding Standards.
20371
20372 2007-12-14 Eli Zaretskii <eliz@gnu.org>
20373
20374 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
20375
20376 2007-12-12 Juri Linkov <juri@jurta.org>
20377
20378 * buffer.c (Frename_buffer): In interactive spec replace
20379 `read-buffer' with `read-string' that uses `buffer-name-history'
20380 as history, and the current buffer's name as default.
20381
20382 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
20383
20384 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
20385 manipulating the backtrace manually.
20386 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
20387 (struct backtrace, backtrace_list): Remove.
20388 (command_loop_1): Remove dead var `no_direct'.
20389
20390 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
20391 preserve non-built-in buffer-local variables.
20392 (Fkill_all_local_variables): Don't re-create&re-set permanent
20393 buffer-local variables.
20394
20395 2007-12-09 Juri Linkov <juri@jurta.org>
20396
20397 * buffer.c (Frename_buffer): Change interactive spec from "s" to
20398 Lisp code that uses `read-buffer' with current buffer as default.
20399
20400 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
20401
20402 * dbusbind.c (xd_read_message): Generate an event for every
20403 registered handler. There might be several handlers registered
20404 for the same signal.
20405 (Fdbus_register_signal): Don't overwrite a registration for the
20406 same signal. Add a new registration if handlers are different.
20407 (Vdbus_registered_functions_table): Rework doc string.
20408
20409 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
20410
20411 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
20412 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
20413 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
20414 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
20415 Unify argument lists.
20416 (xd_read_message, Fdbus_register_signal): Reorder and extend event
20417 arguments and hash table keys. Use unique name for service.
20418 (Fdbus_unregister_signal): Remove checks.
20419 (Vdbus_registered_functions_table): Fix doc string.
20420
20421 2007-12-05 Magnus Henoch <mange@freemail.hu>
20422
20423 * process.c (make_process): Initialize pty_flag to 0.
20424
20425 2007-12-05 Jason Rumney <jasonr@gnu.org>
20426
20427 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
20428 specified XBMs.
20429
20430 2007-12-05 Richard Stallman <rms@gnu.org>
20431
20432 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
20433
20434 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20435
20436 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
20437 New variable.
20438 (mac_try_close_socket) [MAC_OSX]: New function.
20439 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
20440 Update cfsockets_for_select. Replace invalid CFRunLoop source.
20441
20442 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
20443 Use mac_try_close_socket.
20444
20445 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20446
20447 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
20448 reloc_base.
20449 (copy_dysymtab): Compute relocation base here.
20450 (rebase_reloc_address) [__ppc64__]: New function.
20451 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
20452 changed.
20453
20454 2007-12-05 Jason Rumney <jasonr@gnu.org>
20455
20456 * w32proc.c (sys_spawnve): Quote args with wildcards.
20457
20458 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20459
20460 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
20461 __objc_* sections.
20462 (unrelocate) [_LP64]: Set relocation base to address of data segment.
20463
20464 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
20465
20466 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
20467 Move check for Vdbus_registered_functions_table to
20468 xd_read_queued_messages.
20469 (xd_read_queued_messages): Protect xd_read_message calls by
20470 internal_condition_case_1.
20471
20472 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
20473
20474 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
20475 Qdbus_system_bus and Qdbus_session_bus, respectively.
20476 (Vdbus_intern_symbols): Remove.
20477 (Vdbus_registered_functions_table): New hash table.
20478 (XD_SYMBOL_INTERN_SYMBOL): Remove.
20479 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
20480 Rewrite in order to manage registered functions by hash table
20481 Vdbus_registered_functions_table.
20482
20483 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
20484
20485 * xterm.c: Update URL to Window Manager Specification in comment.
20486
20487 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
20488
20489 * config.in (HAVE_DBUS): Add.
20490
20491 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
20492 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
20493 (obj): Add $(DBUS_OBJ).
20494 (LIBES): Add $(DBUS_LIBS).
20495 (dbusbind.o): New target.
20496
20497 * dbusbind.c: New file.
20498
20499 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
20500
20501 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
20502 (Qdbus_event): New Lisp symbol.
20503 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
20504 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
20505 (keys_of_keyboard): Define dbus-event.
20506
20507 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
20508
20509 2007-12-01 Richard Stallman <rms@gnu.org>
20510
20511 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
20512
20513 2007-11-30 Jason Rumney <jasonr@gnu.org>
20514
20515 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
20516 (w32con_reset_terminal_modes): Clear screen buffer.
20517 (w32_face_attributes): Don't use color indexes that are out of range.
20518 Only reverse the default colors.
20519
20520 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
20521 WINDOWSNT.
20522
20523 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
20524
20525 2007-11-29 Jason Rumney <jasonr@gnu.org>
20526
20527 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
20528 (w32_face_attributes): Use Vtty_defined_color_alist to determine
20529 if the terminal colors are initialized.
20530 (unspecified_fg, unspecified_bg): Remove unused declarations.
20531
20532 2007-11-29 Andreas Schwab <schwab@suse.de>
20533
20534 * keyboard.c (apply_modifiers): Fix typo.
20535
20536 2007-11-29 Richard Stallman <rms@gnu.org>
20537
20538 * keymap.c (Fcurrent_local_map): Doc fix.
20539
20540 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
20541
20542 * s/gnu-kfreebsd.h: New file.
20543
20544 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
20545
20546 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
20547 Don't cast redundantly.
20548
20549 * keyboard.c (KEY_TO_CHAR): New macro.
20550 (parse_modifiers, apply_modifiers): Accept integer arguments.
20551 (read_key_sequence): Use them to unify the "shift->unshift" mapping
20552 for chars and symbol keys.
20553 After doing such remapping, apply function-key-map again.
20554
20555 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
20556
20557 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
20558 compiled anymore.
20559
20560 2007-11-26 Andreas Schwab <schwab@suse.de>
20561
20562 * process.c (list_processes_1): Fix indentation level of the
20563 command column.
20564
20565 2007-11-23 Andreas Schwab <schwab@suse.de>
20566
20567 * editfns.c (Fformat): Handle %c specially since it requires the
20568 argument to be of type int.
20569
20570 2007-11-23 Markus Triska <markus.triska@gmx.at>
20571
20572 * emacs.c (main): Call init_editfns before init_process, since
20573 init_process sets Vprocess_connection_type depending on OS release.
20574
20575 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
20576
20577 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
20578 (find_symbol_value): Use do_symval_forwarding.
20579
20580 * data.c (set_internal): Set the value in the `cons-cell' (for
20581 Buffer_Local_values) not only for frame-local variables.
20582
20583 2007-11-22 Andreas Schwab <schwab@suse.de>
20584
20585 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
20586 values to sprintf.
20587 * keymap.c (Fsingle_key_description): Likewise.
20588 * print.c (print_object): Likewise.
20589
20590 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
20591
20592 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
20593 file for image is nil.
20594
20595 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
20596
20597 * term.c: Include stdarg.h.
20598 (fatal): Implement using varargs.
20599 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
20600
20601 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
20602
20603 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
20604 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
20605 Update call to buffer_slot_type_mismatch.
20606 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
20607 (buffer_slot_type_mismatch): Update.
20608 * buffer.c (buffer_local_types): Remove.
20609 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
20610 (defvar_per_buffer): Set the type in the buffer_objfwd.
20611
20612 2007-11-21 Jason Rumney <jasonr@gnu.org>
20613
20614 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
20615 CreateFileMapping returns NULL on failure.
20616
20617 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
20618
20619 * search.c (Fset_match_data): Remove the `evaporate' feature.
20620 (unwind_set_match_data): Don't use the `evaporate' feature.
20621
20622 2007-11-21 Jason Rumney <jasonr@gnu.org>
20623
20624 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
20625
20626 * w32console.c (w32con_write_glyphs): Remove unused variables.
20627
20628 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
20629
20630 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
20631
20632 * s/darwin.h (MULTI_KBOARD): Remove.
20633
20634 * macfns.c (x_create_tip_frame, Fx_create_frame)
20635 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
20636
20637 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
20638
20639 * buffer.c (Fbuffer_local_value): Remove redundant test.
20640 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
20641 than in `current-buffer' to match the comment.
20642 Do the swap using swap_in_global_binding.
20643
20644 * data.c (store_symval_forwarding, set_internal):
20645 * eval.c (specbind): Remove dead code.
20646
20647 * coding.c (detect_coding, Fupdate_coding_systems_internal):
20648 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
20649 Since we do not want to see internal Lisp_*fwd objects here.
20650
20651 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
20652
20653 * sysdep.c (init_system_name): Use getaddrinfo if available.
20654
20655 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
20656 (x_scroll_bar_note_movement): start, end, with, height in struct
20657 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
20658
20659 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
20660
20661 * puresize.h (BASE_PURESIZE): Increase to 1190000.
20662
20663 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
20664
20665 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
20666 This undoes Richard's change of 14-Oct-2002.
20667
20668 * alloc.c (allocate_other_vector):
20669 * lisp.h (allocate_other_vector): Remove.
20670
20671 * window.c (struct save_window_data): Move non-lisp data to the end
20672 and make it `int' rather than Lisp_Object.
20673 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
20674 Done wrap/unwrap integer values.
20675 (Fset_window_configuration, compare_window_configurations):
20676 Update use of fields to their new types.
20677
20678 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
20679 Turn integer fields into `int'. Merge x_window_low and x_window_high.
20680 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
20681 (SET_SCROLL_BAR_X_WINDOW): Remove.
20682 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
20683 Access the new x_window field directly.
20684 * xterm.c (x_scroll_bar_create): Use a pseudovector.
20685 Don't wrap/unwrap integers into Lisp_Objects.
20686 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
20687 (x_scroll_bar_report_motion):
20688 Don't wrap/unwrap integers into Lisp_Objects.
20689 (x_term_init): Use SDATA.
20690 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
20691 (x_scroll_bar_set_handle, x_scroll_bar_remove)
20692 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
20693 (x_scroll_bar_report_motion, x_scroll_bar_clear):
20694 * xfns.c (x_set_background_color):
20695 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
20696 Access the new x_window field directly.
20697
20698 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
20699 (allocate_pseudovector): Make non-static.
20700
20701 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
20702 (allocate_pseudovector): Declare.
20703 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
20704
20705 2007-11-15 Andreas Schwab <schwab@suse.de>
20706
20707 * editfns.c (Fformat): Correctly format EMACS_INT values.
20708 Also take precision into account when formatting an integer.
20709
20710 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
20711
20712 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
20713
20714 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
20715 (syms_of_keyboard): Defsubr it.
20716
20717 * data.c (swap_in_global_binding): Fix longstanding bug where
20718 store_symval_forwarding was not called with the right second argument,
20719 thus causing objfwd-ing from being dropped.
20720
20721 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
20722
20723 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
20724 (Fx_display_pixel_height, Fx_display_planes)
20725 (Fx_display_color_cells, Fx_server_max_request_size)
20726 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
20727 (Fx_display_visual_class, Fx_display_save_under):
20728 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
20729 (Fx_display_pixel_height, Fx_display_planes)
20730 (Fx_display_color_cells, Fx_server_max_request_size)
20731 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
20732 (Fx_display_mm_height, Fx_display_mm_width)
20733 (Fx_display_backing_store, Fx_display_visual_class)
20734 (Fw32_select_font, Fx_display_save_under):
20735 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
20736 (Fx_display_pixel_height, Fx_display_planes)
20737 (Fx_display_color_cells, Fx_server_max_request_size)
20738 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
20739 (Fx_display_save_under): Fix typos in docstrings.
20740
20741 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
20742
20743 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
20744 corresponding to deleted entries; they are an implementation detail.
20745 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
20746 Remove variables.
20747 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
20748 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
20749 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
20750 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
20751 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
20752 (Fw32_define_rgb_color, Fw32_load_color_file)
20753 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
20754 Fix typos in docstrings.
20755 (Fx_server_version): Reflow docstring.
20756 (Fw32_shell_execute): Doc fixes.
20757
20758 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
20759
20760 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
20761 if w32_parse_hot_key returned nil.
20762
20763 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
20764
20765 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
20766
20767 2007-11-09 Jason Rumney <jasonr@gnu.org>
20768
20769 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
20770
20771 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
20772
20773 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
20774 Remove W32_SCROLL_BAR_CLICK_EVENT.
20775
20776 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
20777 Add MULTIMEDIA_KEY_EVENT.
20778
20779 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
20780 (lispy_multimedia_keys) [WINDOWSNT]: New array.
20781 (make_lispy_event) [WINDOWSNT]: Use it to translate
20782 MULTIMEDIA_KEY_EVENT.
20783
20784 * w32term.h (WM_APPCOMMAND): Define if not already.
20785 (GET_APPCOMMAND_LPARAM): Likewise.
20786
20787 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
20788 WM_APPCOMMAND.
20789
20790 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
20791 (syms_of_w32fns): Export and initialize it.
20792 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
20793
20794 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
20795
20796 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
20797 twice.
20798
20799 * xdisp.c (handle_face_prop): Fix last change.
20800
20801 2007-11-09 Richard Stallman <rms@gnu.org>
20802
20803 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
20804 not just for after-strings and before-strings.
20805 Call face_for_overlay_string and pass the overlay to it.
20806 (handle_display_prop): Determine whether property came from an overlay.
20807 Pass OVERLAY arg to handle_single_display_spec.
20808 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
20809 (load_overlay_strings): Fill in it->string_overlays.
20810 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
20811
20812 * xfaces.c (face_for_overlay_string): Function renamed from
20813 face_at_buffer_position_no_overlays, and add arg OVERLAY.
20814
20815 * dispextern.h (struct it): New elt string_overlays.
20816 New elt from_overlay, also in stack.
20817 Rearrange a few elements.
20818 (face_for_overlay_string): Decl renamed from
20819 face_at_buffer_position_no_overlays, and add argument.
20820
20821 2007-11-09 Richard Stallman <rms@gnu.org>
20822
20823 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
20824 to get the base face for an overlay string.
20825
20826 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
20827
20828 * xfaces.c (face_at_buffer_position_no_overlays): New function.
20829
20830 * xdisp.c (handle_stop): Move some code out of loop.
20831
20832 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20833
20834 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
20835 Fix conversion from Lisp object to ATSUFontID.
20836
20837 2007-11-09 Jason Rumney <jasonr@gnu.org>
20838
20839 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
20840
20841 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20842
20843 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
20844 Don't assume regions are aligned to page boundary.
20845 (print_load_command_name): Add LC_UUID if defined.
20846
20847 2007-11-09 Richard Stallman <rms@gnu.org>
20848
20849 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
20850
20851 2007-11-07 Jason Rumney <jasonr@gnu.org>
20852
20853 * s/windows95.h: Remove.
20854
20855 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
20856
20857 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
20858 abort with a message on unhandled store_type values.
20859
20860 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
20861
20862 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
20863 Remove HAVE_X11R5 and HAVE_X11R4.
20864
20865 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
20866
20867 * Makefile.in: Remove references to sunfns.c and sunfns.o.
20868
20869 2007-11-01 Johan Bockgård <bojohan@gnu.org>
20870
20871 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
20872 Don't set s->stippled_p here, since it has already been set by
20873 x_set_glyph_string_gc from x_draw_glyph_string.
20874
20875 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
20876
20877 * sunfns.c: Remove file.
20878
20879 * m/sun386.h:
20880 * m/sun2.h:
20881 * m/sparc.h: Remove Sun windows code.
20882
20883 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
20884
20885 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
20886 (init_keyboard): Set current_kboard's window-system to nil.
20887 (tty_read_avail_input): Typo.
20888 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
20889
20890 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
20891
20892 * s/usg5-4.h:
20893 * s/usg5-3.h:
20894 * s/ptx.h:
20895 * m/is386.h:
20896 * m/ibmps2-aix.h:
20897 * Makefile.in: Remove all mentions of X10.
20898
20899 * dispnew.c (syms_of_display): Don't mention version 10.
20900
20901 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
20902
20903 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
20904 ($(BLD)/abbrev.$(O)): Remove.
20905
20906 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
20907
20908 Rewrite abbrev.c in Elisp.
20909 * image.c (Qcount): Don't declare as extern.
20910 (syms_of_image): Initialize and staticpro `Qcount'.
20911 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
20912 * emacs.c (main): Don't call syms_of_abbrev.
20913 * Makefile.in (obj): Remove abbrev.o.
20914 (abbrev.o): Remove.
20915 * abbrev.c: Remove.
20916
20917 2007-10-26 Martin Rudalics <rudalics@gmx.at>
20918
20919 * window.c (window_min_size_2): Don't count header-line.
20920
20921 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
20922
20923 * frame.h (struct frame): Move all bit fields after the first bit
20924 field to take advantage of the available space. Group all the
20925 chars together to reduce wasted space due to padding.
20926
20927 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
20928
20929 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
20930
20931 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
20932 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
20933 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
20934 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
20935 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
20936 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
20937 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
20938 (last_marked, mark_object_loop_halt): Make static.
20939
20940 * frame.c (syms_of_frame) <delete-frame-functions>:
20941 Fix typo in docstring.
20942
20943 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
20944
20945 * w32.c (init_environment): Fix tiny memory leak.
20946 (w32_get_resource): Remove unused variable `ok'.
20947
20948 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
20949
20950 Make `window-system' into a keyboard-local variable (rather than
20951 frame-local as done originally by multi-tty).
20952
20953 * keyboard.h (struct kboard): Add Vwindow_system.
20954 * keyboard.c (init_kboard): Set a default for Vwindow_system.
20955 (mark_kboards): Mark Vwindow_system.
20956
20957 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
20958 (init_display): Don't set the obsolete `window-system' frame-param.
20959
20960 * xterm.c (x_term_init):
20961 * w32term.c (w32_create_terminal):
20962 * term.c (init_tty): Set Vwindow_system.
20963 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
20964 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
20965
20966 * xfns.c (Fx_create_frame, x_create_tip_frame):
20967 * w32fns.c (Fx_create_frame, x_create_tip_frame):
20968 * macfns.c (Fx_create_frame):
20969 Don't set the obsolete `window-system' frame-param.
20970
20971 * frame.h (Qwindow_system): Remove.
20972 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
20973 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
20974
20975 2007-10-24 Richard Stallman <rms@gnu.org>
20976
20977 * frame.c (x_figure_window_size): For fullscreen case,
20978 set USPosition | PPosition without clobbering rest of window_prompting.
20979
20980 * keyboard.c (Fcurrent_idle_time): Doc fix.
20981
20982 * print.c (Fwith_output_to_temp_buffer): Doc fix.
20983
20984 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
20985
20986 * process.c (unwind_request_sigio): Only define if __ultrix__.
20987
20988 * callproc.c (child_setup): Remove spurious *.
20989
20990 * lisp.h (Fget_text_property): Declare.
20991 (have_menus_p): Declare it here rather than in sys-dep header files.
20992 * macterm.h (have_menus_p):
20993 * msdos.h (have_menus_p):
20994 * xterm.h (have_menus_p): Remove.
20995
20996 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
20997 (Fmake_variable_frame_local): Just check the variable's const-ness
20998 rather than checking nil or t.
20999
21000 2007-10-22 Jason Rumney <jasonr@gnu.org>
21001
21002 * w32fns.c: Include math.h.
21003 (w32_abort): Declaration moved to nt/config.nt.
21004
21005 * s/ms-w32.h (HAVE_STDLIB_H): Define.
21006 (abort): Redefinition moved to nt/config.nt.
21007
21008 * m/windowsnt.h: Remove.
21009
21010 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
21011
21012 * emacs.c (Fdump_emacs): Fix typo in message.
21013 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
21014 <installation-directory>: Reflow docstring.
21015
21016 2007-10-22 Juri Linkov <juri@jurta.org>
21017
21018 * minibuf.c: Allow minibuffer default to be a list of default values.
21019 With empty input use the first element of this list as returned default.
21020 (string_to_object)
21021 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
21022 (read_minibuf): If defalt is cons, set histstring to its car.
21023 (Fread_string): If default_value is cons, set val to its car.
21024 (Fread_buffer): If def is cons, use its car.
21025 (Fcompleting_read): If defalt is cons, set val to its car.
21026
21027 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
21028
21029 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
21030
21031 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
21032
21033 * doc.c (Fdocumentation): Check for advice in all cases.
21034
21035 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
21036
21037 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
21038
21039 2007-10-19 Richard Stallman <rms@gnu.org>
21040
21041 * doc.c (Fdocumentation): Check for and handle an advised function.
21042
21043 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
21044
21045 * process.c (Fset_process_filter): Doc fix.
21046
21047 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
21048
21049 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
21050 which caused key-translation-map to applied repeatedly (thus breaking
21051 double-mode).
21052
21053 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
21054
21055 * xselect.c (x_own_selection, x_handle_selection_clear)
21056 (x_clear_frame_selections):
21057 * w32menu.c (list_of_panes, list_of_items):
21058 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
21059 * textprop.c (validate_plist, interval_has_all_properties)
21060 (interval_has_some_properties, interval_has_some_properties_list)
21061 (add_properties, text_property_list):
21062 * process.c (Fget_buffer_process, list_processes_1, status_notify):
21063 * minibuf.c (Fassoc_string):
21064 * macselect.c (x_own_selection, x_clear_frame_selections)
21065 (Fx_disown_selection_internal):
21066 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
21067 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
21068
21069 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
21070
21071 * process.c: Link to libs for calling res_init() if available.
21072 (Fmake_network_process): Call res_init() before getaddrinfo or
21073 gethostbyname, if possible.
21074
21075 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
21076
21077 * lread.c (read1): Set pvectype for char_tables.
21078
21079 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
21080 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
21081 Add type checks.
21082 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
21083
21084 * alloc.c (free_misc): Use XMISCTYPE.
21085 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
21086
21087 2007-10-17 Glenn Morris <rgm@gnu.org>
21088
21089 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
21090 (syms_of_minibuf): Add Qcompletion_ignore_case.
21091 * dired.c (Qcompletion_ignore_case): Change to external.
21092 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
21093 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
21094 (Fread_file_name): Use it rather than intern'ing.
21095
21096 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
21097 (Fread_coding_system): Ignore case of user input.
21098
21099 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21100
21101 * xdisp.c (handle_display_prop): Ignore display specs after
21102 replacing one when string text is being replaced.
21103 (handle_single_display_spec): Pretend as if characters with display
21104 property haven't been consumed only when buffer text is being replaced.
21105
21106 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
21107
21108 * xfns.c (Fx_create_frame, Fx_display_list):
21109 * window.c (window_fixed_size_p, enlarge_window)
21110 (shrink_window_lowest_first):
21111 * macterm.c (init_font_name_table):
21112 * macfns.c (Fx_create_frame, Fx_display_list):
21113 * lread.c (close_load_descs):
21114 * keyboard.c (read_char_x_menu_prompt):
21115 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
21116 * coding.c (code_convert_region_unwind): Test the type of an object
21117 rather than just !NILP before extracting data from it.
21118
21119 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
21120
21121 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
21122 (XMISCANY): New macro.
21123 (XMISCTYPE): Use it.
21124 (struct Lisp_Misc_Any): New type.
21125 (union Lisp_Misc): Use it.
21126 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
21127 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
21128 (find_symbol_value, set_internal, default_value, Fset_default)
21129 (Fmake_variable_buffer_local, Fmake_local_variable)
21130 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
21131 (Flocal_variable_if_set_p, Fvariable_binding_locus):
21132 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
21133 * alloc.c (allocate_buffer): Set the size and tag.
21134 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
21135 Use XMISCANY.
21136 (die): Follow the GNU convention for error messages.
21137 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
21138 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
21139 tag any more.
21140 (set_buffer_internal_1):
21141 * frame.c (store_frame_param):
21142 * eval.c (specbind):
21143 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
21144
21145 * doc.c (Fsnarf_documentation): Simplify.
21146
21147 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
21148
21149 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
21150 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
21151
21152 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
21153
21154 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
21155
21156 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
21157
21158 * eval.c (do_autoload): Don't save autoloads.
21159
21160 * data.c (Ffset): Save autoload of the function being set.
21161
21162 2007-10-07 John Paul Wallington <jpw@pobox.com>
21163
21164 * xfns.c (x_create_tip_frame): Set the `display-type' frame
21165 parameter before setting up faces.
21166
21167 2007-10-13 Eli Zaretskii <eliz@gnu.org>
21168
21169 * ccl.c (Fregister_code_conversion_map):
21170 * keyboard.c (append_tool_bar_item): Reformat last change.
21171
21172 * lisp.h (eabs): Rename from `abs'. All callers changed.
21173
21174 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
21175
21176 * buffer.c (add_overlay_mod_hooklist):
21177 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
21178 * fontset.c (make_fontset):
21179 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
21180 (append_tool_bar_item):
21181 * macmenu.c (grow_menu_items):
21182 * w32menu.c (grow_menu_items):
21183 * xmenu.c (grow_menu_items): Use larger_vector.
21184
21185 2007-10-13 Eli Zaretskii <eliz@gnu.org>
21186
21187 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
21188 selected frame'' on MSDOS).
21189
21190 2007-10-12 Martin Rudalics <rudalics@gmx.at>
21191
21192 * frame.c (Qexplicit_name): New variable.
21193 (x_report_frame_params): Report it in parameter alist.
21194 (syms_of_frame): Intern and staticpro it.
21195
21196 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
21197
21198 * macfns.c (x_create_tip_frame): Set terminal for frame.
21199
21200 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
21201
21202 * frame.c (Qenvironment): Remove.
21203 (syms_of_frame) <Qenvironment>: Don't initialize.
21204 (Fdelete_frame): Don't treat the `environment' param specially.
21205 * frame.h (Qenvironment): Don't declare.
21206 * callproc.c (set_initial_environment): Don't set unused frame param.
21207
21208 * frame.c (Fframe_with_environment): Remove.
21209 (syms_of_frame) <Sframe_with_environment>: Don't declare.
21210
21211 * lisp.h (Fframe_with_environment): Don't declare.
21212
21213 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
21214
21215 * indent.c (indent_tabs_mode, last_known_column)
21216 (last_known_column_modified): Make static.
21217 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
21218
21219 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
21220
21221 * puresize.h (BASE_PURESIZE): Increase to 1170000.
21222
21223 2007-10-09 Jason Rumney <jasonr@gnu.org>
21224
21225 * w32term.c (x_set_window_size): Disable code that attempts to tell
21226 Lisp code about a size change before it actually happens.
21227
21228 2007-10-09 Richard Stallman <rms@gnu.org>
21229
21230 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
21231 return HANDLED_RETURN.
21232
21233 2007-10-08 Martin Rudalics <rudalics@gmx.at>
21234
21235 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
21236 when there's an unread command event.
21237
21238 * frame.c (focus_follows_mouse): Move here from frame.el to allow
21239 window autoselection act appropriately when leaving selected frame.
21240 (syms_of_frame): Initialize focus_follows_mouse.
21241 * frame.h (focus_follows_mouse): Extern it.
21242 * macterm.c (XTread_socket): When focus_follows_mouse is nil
21243 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
21244 * msdos.c (dos_rawgetc): Likewise.
21245 * w32term.c (w32_read_socket): Likewise.
21246 * xterm.c (handle_one_xevent): Likewise.
21247 * xdisp.c (syms_of_xdisp): In doc-string of
21248 mouse-autoselect-window mention focus-follows-mouse.
21249
21250 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21251
21252 * macterm.c (mac_load_query_font): Fix missing return value.
21253 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
21254 Add BLOCK_INPUT.
21255
21256 2007-10-08 Richard Stallman <rms@gnu.org>
21257
21258 * xdisp.c (get_window_cursor_type): Implement documented behavior
21259 for cursor-in-non-selected-windows = t.
21260
21261 2007-10-08 Jason Rumney <jasonr@gnu.org>
21262
21263 * w32.c (w32_get_resource): Always close registry keys.
21264
21265 2007-10-08 Jason Rumney <jasonr@gnu.org>
21266
21267 * makefile.w32-in (LIBS): Add COMCTL32.
21268
21269 * w32fns.c (globals_of_w32fns): Init common controls.
21270
21271 2007-10-08 Richard Stallman <rms@gnu.org>
21272
21273 * image.c (our_memory_buffer): Rename from omfib_buffer.
21274
21275 2007-10-08 Richard Stallman <rms@gnu.org>
21276
21277 * buffer.c (Foverlays_at): Doc fix.
21278
21279 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
21280
21281 * fns.c (Fplist_put): Preserve uneven tail data.
21282
21283 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
21284
21285 * termhooks.h (enum event_kind): Remove trailing comma.
21286
21287 * frame.h (enum): Remove trailing comma.
21288
21289 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
21290
21291 * w32proc.c (delete_child): Don't terminate threads of zombies.
21292
21293 2007-10-08 Martin Rudalics <rudalics@gmx.at>
21294
21295 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
21296
21297 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
21298 last-repeatable-command.
21299 (init_kboard): Initialize Vlast_repeatable_command.
21300 (command_loop_1): Set it to real_this_command unless that was
21301 bound to an input event.
21302 (mark_kboards): Mark it.
21303
21304 2007-10-08 Richard Stallman <rms@gnu.org>
21305
21306 * eval.c (condition-case): Doc fix.
21307
21308 2007-10-08 Masatake YAMATO <jet@gyve.org>
21309
21310 * xfaces.c (tty_supports_face_attributes_p): Fix code
21311 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
21312 was copied and not edited.
21313
21314 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
21315
21316 Add new `input-decode-map' keymap and use it for terminal
21317 escape sequences.
21318 * keyboard.h (struct kboard): Add Vinput_decode_map.
21319 Remove Vlocal_key_translation_map.
21320 * keyboard.c (read_key_sequence): Add support for input-decode-map.
21321 (init_kboard): Init input-decode-map.
21322 Replace local-key-translation-map back with key-translation-map.
21323 (syms_of_keyboard): Declare input-decode-map.
21324 Remove local-key-translation-map. Update docstrings.
21325 (mark_kboards): Mark Vinput_decode_map.
21326 Don't mark Vlocal_key_translation_map.
21327 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
21328 Replace local-key-translation-map back with key-translation-map.
21329 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
21330 Bind in input-decode-map rather than function-key-map.
21331
21332 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
21333 This was made redundant by the previous introduction of XSETPVECTYPE.
21334
21335 2007-10-09 Richard Stallman <rms@gnu.org>
21336
21337 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
21338
21339 2007-09-29 Richard Stallman <rms@gnu.org>
21340
21341 * eval.c (internal_condition_case_2, internal_condition_case_1)
21342 (internal_condition_case): Reenable abort if x_catching_errors ()
21343 to see if that really happens and why.
21344
21345 2007-10-06 Andreas Schwab <schwab@suse.de>
21346
21347 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
21348
21349 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
21350
21351 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
21352
21353 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
21354
21355 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
21356
21357 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
21358
21359 * window.h (struct window):
21360 * window.c (struct save_window_data, struct saved_window):
21361 * termhooks.h (struct terminal):
21362 * process.h (struct Lisp_Process):
21363 * frame.h (struct frame):
21364 * buffer.h (struct buffer):
21365 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
21366 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
21367 The size field of (pseudo)vectors is now unsigned.
21368 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
21369
21370 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
21371 Turn `count' into an integer.
21372
21373 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
21374 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
21375 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
21376 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
21377 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
21378
21379 * alloc.c (allocate_pseudovector): New fun.
21380 (ALLOCATE_PSEUDOVECTOR): New macro.
21381 (allocate_window, allocate_terminal, allocate_frame)
21382 (allocate_process): Use it.
21383 (mark_vectorlike): New function.
21384 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
21385 (mark_terminals): Use it.
21386 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
21387 (Fmake_byte_code): Use XSETPVECTYPE.
21388
21389 * frame.c (Fframe_parameters): Minor simplification.
21390
21391 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
21392
21393 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
21394
21395 * buffer.c (Fget_buffer_create, init_buffer_once):
21396 * lread.c (defsubr):
21397 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
21398
21399 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
21400 defined differently in the m/*.h files.
21401 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
21402 (XSETPVECTYPE): New macro.
21403 (XSETPSEUDOVECTOR): Use it.
21404
21405 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
21406 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
21407
21408 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
21409 * lread.c (defvar_per_buffer):
21410 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
21411
21412 * window.c (candidate_window_p): Only consider as visible frames that
21413 are on the same terminal.
21414
21415 * m/ibms390x.h (MARKBIT): Remove unused macro.
21416
21417 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
21418
21419 * lread.c (Fload): Fix typo in docstring.
21420
21421 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
21422
21423 * floatfns.c (Fexpt): Manually check for overflows, so that a power
21424 of a non-zero value can't yield zero.
21425
21426 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
21427
21428 * term.c (term_clear_mouse_face, term_mouse_highlight)
21429 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
21430
21431 * print.c (safe_debug_print): Use XHASH.
21432
21433 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
21434 Lisp elements such as tags.
21435 (XHASH): New macro.
21436 (EQ): Use it.
21437 (SREF, SSET, STRING_COPYIN): Use SDATA.
21438 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
21439
21440 * alloc.c (mark_terminal): Remove left-over declaration.
21441 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
21442 (allocate_vectorlike): Remove type argument. Adjust callers.
21443 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
21444 Only handle the one remaining MEM_TYPE_VECTORLIKE.
21445
21446 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
21447 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
21448 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
21449 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
21450 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
21451 Use them.
21452
21453 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
21454 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
21455 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
21456
21457 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
21458
21459 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
21460 loaded by default.
21461
21462 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
21463
21464 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
21465 on this tty.
21466 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
21467
21468 * term.c (mouse_face_window): Rename from Qmouse_face_window.
21469 Update all users.
21470 (handle_one_term_event): Use Gpm_DrawPointer.
21471 (Fgpm_mouse_start): Rename from Fterm_open_connection.
21472 Signal errors instead of returning nil. Always return nil.
21473 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
21474 Make it a noop if gpm-mouse was not activated.
21475 (syms_of_term): Update names.
21476
21477 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
21478
21479 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
21480 (init_sys_modes): Check that gpm_tty is the current tty.
21481
21482 * alloc.c (allocate_terminal): Set the vector size to only count the
21483 lisp fields. Initialize those to nil.
21484 (mark_object): Don't treat terminals specially.
21485 (mark_terminal): Remove.
21486 (mark_terminals): Use mark_object instead.
21487
21488 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
21489 the GC to the beginning.
21490
21491 * indent.h:
21492 * indent.c: Use EMACS_INT for ints coming from Elisp data.
21493
21494 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
21495
21496 2007-09-25 Jason Rumney <jasonr@gnu.org>
21497
21498 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
21499
21500 * w32console.c (create_w32cons_output): Remove.
21501
21502 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
21503
21504 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
21505 (reset_sys_modes): Use reset_terminal_modes_hook.
21506
21507 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
21508
21509 * eval.c (do_autoload): Don't output any message.
21510
21511 2007-09-24 Juri Linkov <juri@jurta.org>
21512
21513 * emacs.c (standard_args): Change priority of "--no-splash"
21514 from 40 to 3. Add "--no-desktop" with the same priority.
21515
21516 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
21517
21518 * alloc.c (gc_sweep): Check cons cell mark bits word by word
21519 and optimize the case where they are all 1.
21520
21521 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
21522
21523 * lisp.h (abs): Define if not defined.
21524 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
21525 Don't define `abs', since it's defined in lisp.h.
21526
21527 2007-09-22 Eli Zaretskii <eliz@gnu.org>
21528
21529 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
21530 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
21531 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
21532 (init_tty): Use DEV_TTY instead of "/dev/tty".
21533 [WINDOWSNT]: No need to protect from NAME arg being null.
21534
21535 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
21536
21537 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
21538 up the tty state.
21539
21540 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
21541
21542 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
21543 (gpm_tty): Change its type.
21544 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
21545 (gpm_tty): Change its type and initialize it.
21546 (Fterm_open_connection): Check the frame is indeed a tty.
21547 Use the new gpm_tty.
21548 (Fterm_close_connection): Use the new gpm_tty.
21549 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
21550 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
21551
21552 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
21553
21554 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
21555 underline_color, to draw strike-through.
21556
21557 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
21558
21559 * lisp.h (allocate_terminal): Declare.
21560
21561 * window.c (candidate_window_p): Consider frames that are being placed
21562 by the user as somewhere between visible and iconified.
21563 (window_loop): Prefer windows on the current frame.
21564 (Fselect_window): Move the use of select-frame to the beginning so we
21565 can just delegate all the work (it'll call us back anyway).
21566
21567 * frame.c (Qdisplay_environment_variable):
21568 * frame.h (Qdisplay_environment_variable): Delete.
21569
21570 * .gdbinit (xbacktrace): Print the arg's address rather than the value
21571 of the first arg, since that value may be a union.
21572
21573 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
21574 parameter rather than Qdisplay_environment_variable. If all else
21575 fails, look for DISPLAY in initial-environment.
21576
21577 2007-09-21 Glenn Morris <rgm@gnu.org>
21578
21579 * Makefile.in (emacstool): Remove target.
21580 (lisp, shortlisp): Remove termdev.elc.
21581
21582 2007-09-21 Markus Triska <markus.triska@gmx.at>
21583
21584 * xterm.c (x_delete_display): Compile session management conditionally.
21585
21586 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
21587
21588 * callproc.c (getenv_internal_1): New function.
21589 (getenv_internal): Use it.
21590 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
21591
21592 * terminal.c (get_terminal): Don't accept ints to represent terminals.
21593 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
21594 (Fset_terminal_parameter): Work with dead terminals as well.
21595 (Fmodify_terminal_parameters): Remove.
21596
21597 * terminal.c (get_terminal): Handle terminals.
21598 Make sure the terminal returned is live.
21599 (create_terminal): Use allocate_terminal.
21600 (mark_terminals): Move to alloc.c.
21601 (delete_terminal): Use terminal->name as liveness status.
21602 NULL out fields after freeing their contents.
21603 Don't deallocate the object.
21604 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
21605 rather than an int.
21606 (Fterminal_live_p): Accept non-integer arguments.
21607 (Fterminal_list): Return terminal objects rather than an ints.
21608
21609 * alloc.c (enum mem_type): New member for `terminal' objects.
21610 (allocate_terminal): New function.
21611 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
21612 Handle terminals.
21613 (mark_terminal): New fun.
21614 (mark_terminals): Move from terminal.c.
21615
21616 * term.c (get_tty_terminal): Don't treat output_initial specially.
21617 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
21618 (delete_tty): Use terminal->name as liveness status.
21619
21620 * termhooks.h (struct terminal): Make it into a pseudovector.
21621 Remove `deleted' replaced by checking `name's nullness.
21622
21623 * print.c (print_object): Handle terminals.
21624
21625 * lisp.h (enum pvec_type): New `terminal' pseudovector.
21626 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
21627
21628 * frame.c (make_terminal_frame):
21629 * keyboard.c (tty_read_avail_input):
21630 * w32term.c (x_delete_terminal):
21631 * xfns.c (Fx_create_frame, x_create_tip_frame):
21632 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
21633
21634 2007-09-20 Glenn Morris <rgm@gnu.org>
21635
21636 * process.c (Fmake_network_process): Doc fix.
21637
21638 2007-09-19 Jason Rumney <jasonr@gnu.org>
21639
21640 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
21641
21642 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
21643
21644 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
21645 Fix a C warning regarding variable constness.
21646
21647 * xterm.c (handle_one_xevent): Fix a C warning.
21648
21649 2007-09-18 Jason Rumney <jasonr@gnu.org>
21650
21651 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
21652
21653 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
21654
21655 * gtkutil.c (gdpy_def): New variable.
21656 (xg_initialize): Initialize gdpy_def.
21657 (xg_display_close): If no other display exists, set gdpy_def to a
21658 new connection.
21659
21660 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
21661
21662 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
21663 when we have no file name for the icon.
21664 (xg_tool_bar_expose_callback): Remove.
21665 (xg_create_tool_bar): Don't connect expose signal to
21666 xg_tool_bar_expose_callback.
21667 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
21668
21669 2007-09-16 Andreas Schwab <schwab@suse.de>
21670
21671 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
21672 values instead of zapping them.
21673
21674 2007-09-14 Glenn Morris <rgm@gnu.org>
21675
21676 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
21677 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
21678 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
21679 scope and rename to omfib_buffer for clarity.
21680 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
21681
21682 2007-09-14 Kenichi Handa <handa@m17n.org>
21683
21684 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
21685
21686 2007-09-13 Jason Rumney <jasonr@gnu.org>
21687
21688 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
21689
21690 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
21691
21692 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
21693 (mac_term_init): Call here instead, passing rif.
21694
21695 2007-09-13 Glenn Morris <rgm@gnu.org>
21696
21697 * s/hpux.h: No longer define `static' as nothing.
21698
21699 2007-09-13 Johan Bockgård <bojohan@gnu.org>
21700
21701 * callint.c (Fcall_interactively): Remove unused var `fun'.
21702
21703 2007-09-12 Romain Francoise <romain@orebokech.com>
21704
21705 * window.c (prefer_window_split_horizontally, display_buffer):
21706 Revert 2007-09-08 change.
21707
21708 2007-09-12 Glenn Morris <rgm@gnu.org>
21709
21710 * alloca.c: Remove file.
21711 * Makefile.in (alloca): Do not undef.
21712 (allocaobj, alloca.o): Remove.
21713 (otherobj): Remove allocaobj.
21714 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
21715 * regex.c (C_ALLOCA): Remove all references and code that was only
21716 used when this was defined.
21717 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
21718 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
21719 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
21720
21721 * Makefile.in (SOURCES, unlock, relock): Delete.
21722
21723 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
21724 (menu_grab_callback): All uses changed.
21725
21726 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
21727 (x_reply_selection_request): All uses changed.
21728
21729 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
21730
21731 * lread.c (load_warn_old_style_backquotes): Change message to look
21732 better when it appears in the middle of byte-compiler messages.
21733
21734 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
21735
21736 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
21737
21738 * xterm.c (x_create_terminal): Add comment.
21739
21740 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
21741
21742 2007-09-10 Richard Stallman <rms@gnu.org>
21743
21744 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
21745
21746 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
21747
21748 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
21749 (DEFUN): Document `intspec', use it instead of `prompt'.
21750
21751 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
21752
21753 * data.c (Finteractive_form): If the interactive specification starts
21754 with a `(', use it as a Lisp form.
21755
21756 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
21757 name and file modes.
21758
21759 * callint.c (Fcall_interactively): Comment fixes.
21760
21761 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
21762
21763 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
21764 and compiled functions.
21765
21766 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
21767
21768 * window.c (prefer_window_split_horizontally): New variable.
21769 (display_buffer): Consider splitting window horizontally depending
21770 on prefer_window_split_horizontally.
21771
21772 2007-09-08 Eli Zaretskii <eliz@gnu.org>
21773
21774 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
21775
21776 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
21777
21778 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
21779
21780 * frame.c (x_set_frame_parameters): Check number is positive before
21781 using XFASTINT.
21782
21783 * window.c (freeze_window_start): Don't presume selected_window holds
21784 a window object.
21785 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
21786
21787 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
21788
21789 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
21790
21791 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
21792
21793 * window.c (Vsplit_window_preferred_function): New var.
21794 (Fdisplay_buffer): Use it.
21795 (syms_of_window): Export, and initialize it.
21796
21797 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
21798
21799 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
21800
21801 2007-09-06 Glenn Morris <rgm@gnu.org>
21802
21803 * gtkutil.c (menu_grab_callback) <cnt>:
21804 * xselect.c (x_reply_selection_request) <cnt>: Move static
21805 variable to file scope.
21806
21807 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
21808
21809 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
21810 consistent values of selected_frame and selected_window.
21811
21812 2007-09-04 Jason Rumney <jasonr@gnu.org>
21813
21814 * w32console.c (initialize_w32_display): Zero unused hooks.
21815
21816 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
21817
21818 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
21819 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
21820
21821 2007-09-04 Jason Rumney <jasonr@gnu.org>
21822
21823 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
21824 in w32console.c. Set up input. Remove XXX comments that have been
21825 confirmed as correct.
21826
21827 * s/ms-w32.h (MULTI_KBOARD): Define.
21828
21829 * w32console.c (one_and_only_w32cons): Remove.
21830 (initialize_w32_display): Take terminal argument.
21831
21832 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
21833 initialize_w32_display.
21834 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
21835
21836 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
21837
21838 * keyboard.c (discard_mouse_events): Discard it.
21839 (make_lispy_event): Translate it to a lisp event.
21840 (lispy_wheel_names): Add wheel-left and right events.
21841 (syms_of_keyboard): Enlarge wheel_syms.
21842
21843 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
21844 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
21845
21846 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
21847
21848 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
21849 from WM_MOUSEHWHEEL.
21850 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
21851
21852 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
21853 terminal.
21854
21855 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
21856 keyboard for the terminal.
21857
21858 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
21859
21860 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
21861 (Vresume_tty_hook): Rename from Vresume_tty_functions.
21862 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
21863 and resume-tty-function to resume-tty-hook.
21864 (Fsuspend_tty, Fresume_tty): Use new names.
21865
21866 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
21867
21868 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
21869 if it starts with "n:".
21870
21871 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
21872
21873 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
21874
21875 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
21876
21877 * frame.h:
21878 * frame.c (Qterm_environment_variable): Remove.
21879 (syms_of_frame): Don't init and staticpro it.
21880
21881 * callproc.c (getenv_internal): Remove special case for $TERM.
21882
21883 * callproc.c (Vinitial_environment): New variable.
21884 (set_initial_environment): Initialize it.
21885 (syms_of_callproc): Declare it.
21886 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
21887 TERM under which a process runs is never related to the TERM in which
21888 Emacs is running.
21889
21890 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
21891
21892 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
21893 * s/darwin.h: ... do it here.
21894
21895 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
21896
21897 * lisp.h (set_initial_environment): Rename from set_global_environment.
21898
21899 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
21900 removed by mistake on the multi-tty branch.
21901
21902 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
21903 (Fmodify_frame_parameters): Return a value.
21904
21905 * image.c (png_load): Comment-out var only used in commented-out code.
21906
21907 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
21908 before passing it to mark_object.
21909
21910 * xfaces.c (internal_resolve_face_name): Return a value.
21911 (internal_resolve_face_name, resolve_face_name_error): Comment out.
21912
21913 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
21914 (x_icon): Comment-out var only used in commented-out code.
21915
21916 2007-08-29 Romain Francoise <romain@orebokech.com>
21917
21918 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
21919 QUIT hasn't been provided.
21920
21921 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
21922
21923 * callproc.c (child_setup, getenv_internal): Use the
21924 display-environment-variable and term-environment-variable frame params.
21925 (set_initial_environment): Initialise Vprocess_environment.
21926
21927 * config.in: Disable multi-keyboard support on a mac.
21928
21929 * frame.c (Qterm_environment_variable)
21930 (Qdisplay_environment_variable): New variables.
21931 (syms_of_frame): Intern and staticpro them.
21932 (Fmake_terminal_frame): Disable output method test.
21933
21934 * frame.h: Declare them here.
21935
21936 * macfns.c (x_set_mouse_color): Get rif from the frame.
21937 (x_set_tool_bar_lines): Don't use updating_frame.
21938 (mac_window): Add 2 new parameters for consistency with other systems.
21939 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
21940 frame parameters following what is done in X11 and w32. Don't use
21941 FRAME_MAC_DISPLAY_INFO.
21942 (Fx_open_connection, start_hourglass): Remove window-system check.
21943 (x_create_tip_frame): Get the keyboard from the terminal.
21944
21945 * macmenu.c: Reorder includes.
21946 (Fx_popup_menu): Use terminal specific mouse_position_hook.
21947
21948 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
21949 terminal parameter.
21950 (x_clear_frame): Add a frame parameter.
21951 (note_mouse_movement): Get rif from the frame.
21952 (mac_term_init): Initialize the terminal.
21953 (mac_initialize): Make static and move terminal initialization ...
21954 (mac_create_terminal): ... to this new function.
21955
21956 * macterm.h (struct mac_display_info): Add terminal.
21957 (mac_initialize): Delete declaration.
21958
21959 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
21960
21961 * sysdep.c: Comment out text after #endif.
21962
21963 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
21964 is defined. Better initialize ttys in windows. Use terminal
21965 specific mouse_position_hook.
21966
21967 * termhooks.h (union display_info): Add mac_display_info.
21968
21969 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
21970 Set the default minibuffer frame, window_system and the rest of the
21971 frame parameters following what is done in X11.
21972
21973 * w32term.c (w32_initialize): Make static.
21974
21975 * xselect.c (x_handle_selection_clear): Only access
21976 terminal->kboard when MULTI_KBOARD is defined.
21977
21978 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
21979 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
21980
21981 2007-08-29 Jason Rumney <jasonr@gnu.org>
21982
21983 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
21984 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
21985
21986 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
21987 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
21988
21989 * keyboard.c (restore_kboard_configuration): Only define when
21990 MULTI_KBOARD defined.
21991
21992 * makefile.w32-in: Update dependancies from Makefile.in.
21993 (OBJ1): Add terminal.$(O)
21994
21995 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
21996 Don't define function body.
21997 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
21998
21999 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
22000
22001 * w32.c (request_sigio, unrequest_sigio): Remove.
22002
22003 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
22004 (w32con_clear_frame, w32con_clear_end_of_line)
22005 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
22006 (w32con_delete_glyphs, w32con_set_terminal_window)
22007 (scroll_line, w32_sys_ring_bell): Add frame arg.
22008 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
22009 Add terminal arg.
22010 (PICK_FRAME): Remove.
22011 (w32con_write_glyphs): Use frame specific terminal coding.
22012 (one_and_only_w32cons): New global variable.
22013 (initialize_w32_display): Use it for storing hooks.
22014 (create_w32cons_output): New function.
22015
22016 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
22017 arg a frame.
22018
22019 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
22020 Set window_system.
22021 (x_set_tool_bar_lines): Don't use updating_frame.
22022 (Fx_create_frame): Set terminal and ref count.
22023 (Fx_open_connection): Remove window-system check.
22024
22025 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
22026
22027 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
22028 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
22029 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
22030 Add frame arg.
22031 (x_delete_terminal, w32_create_terminal): New functions.
22032 (w32_term_init): Create a terminal.
22033 (w32_initialize): Move terminal specific initialization to
22034 w32_create_terminal.
22035
22036 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
22037 (w32_clear_rect, w32_clear_area): Use background from frame.
22038 (w32_display_info): Add terminal.
22039 (w32_sys_ring_bell, x_delete_display): Declare here.
22040
22041 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
22042
22043 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
22044
22045 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
22046
22047 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
22048 Fix get_named_tty calls for the controlling tty.
22049
22050 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
22051
22052 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
22053
22054 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
22055
22056 * term.c (tty_insert_glyphs): Add missing first parameter.
22057
22058 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
22059
22060 * buffer.c (Fbuffer_list, Fbury_buffer):
22061 Take frame->buried_buffer_list into account.
22062
22063 * cm.c (current_tty): New variable, for cmputc().
22064 (cmputc): Use it.
22065 (cmcheckmagic): Add tty parameter, look up terminal streams there.
22066 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
22067 (cmgoto): Add tty parameter. Pass it on to calccost().
22068 Use emacs_tputs() instead of tputs().
22069
22070 * cm.h (emacs_tputs): New macro to set current_tty, and then call
22071 tputs().
22072 (current_tty): New variable, for cmputc().
22073 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
22074
22075 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
22076 (internal_condition_case, internal_condition_case_1)
22077 (internal_condition_case_2): Don't abort when x_catching_errors.
22078
22079 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
22080 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
22081 prevent crashes caused by bogus longjmps in read_char.
22082
22083 * keymap.h (Fset_keymap_parent): Add EXFUN.
22084
22085 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
22086 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
22087 Remove redundant definition.
22088
22089 * macfns.c (x_set_mouse_color, x_make_gc):
22090 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22091
22092 * w32term.c (x_free_frame_resources):
22093 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22094 (w32_initialize): Use the accessor macros for terminal characteristics.
22095
22096 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
22097 Use the accessor macros for terminal characteristics.
22098 * msdos.c (internal_terminal_init): Use the accessor macros for
22099 terminal characteristics.
22100 (ScreenVisualBell, internal_terminal_init):
22101 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22102
22103 * termopts.h (no_redraw_on_reenter): Declare.
22104
22105 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
22106 (mark_terminals, mark_ttys): Declare.
22107 (Fgarbage_collect): Call them.
22108 (mark_object): Mark buried_buffer_list.
22109
22110 * prefix-args.c: Include stdlib.h for exit.
22111
22112 * syssignal.h: Add comment.
22113
22114 * indent.c: Include stdio.h.
22115
22116 * window.h (Vinitial_window_system): Declare.
22117 (Vwindow_system): Delete declaration.
22118
22119 * fontset.c (Finternal_char_font): Use FRAME_RIF.
22120
22121 * image.c (lookup_image): Don't initialize `c' until the xasserts
22122 have been run.
22123
22124 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
22125 FRAME_FOREGROUND_PIXEL.
22126
22127 * print.c (print_preprocess): Don't lose print_depth levels while
22128 iterating.
22129
22130 * widget.c (update_from_various_frame_slots):
22131 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22132
22133 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
22134 frames.
22135 (window_internal_height): Remove bogus make_number call.
22136 (init_window_once): Call make_terminal_frame with two zero parameters.
22137
22138 * fileio.c (Fread_file_name): Update comment.
22139
22140 * callint.c (Fcall_interactively):
22141 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
22142 Make sure it is correctly unwound.
22143
22144 * xsmfns.c (x_session_close): New function.
22145
22146 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
22147 Delete declarations.
22148
22149 * xterm.h: Remove declaration for x_fully_uncatch_errors.
22150 (x_output): Remove background_pixel and foreground_pixel fields.
22151 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
22152 (x_delete_device, x_session_close): Declare.
22153
22154 * lread.c: Include setjmp.h. Update declaration of `read_char'.
22155 (read_filtered_event): Call `read_char' with a local
22156 `wrong_kboard_jmpbuf'.
22157
22158 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
22159 Don't call single_kboard_state. Use FRAME_RIF.
22160
22161 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
22162 systems.
22163
22164 * lisp.h (set_process_environment): Rename to `set_global_environment'.
22165 (Fframe_with_environment, Fset_input_meta_mode)
22166 (Fset_quit_char): EXFUN.
22167 (x_create_device, tty_output, terminal, tty_display_info): Declare.
22168 (init_sys_modes, reset_sys_modes): Update prototypes.
22169 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
22170
22171 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
22172 Vlocal_key_translation_map, and Vkeyboard_translate_table.
22173 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
22174 Delete declarations.
22175 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
22176 (temporarily_switch_to_single_kboard, tty_read_avail_input):
22177 New declarations.
22178
22179 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
22180 already does that during init_display(). Call syms_of_keymap
22181 before syms_of_keyboard. Call `syms_of_terminal'.
22182 Call set_initial_environment, not set_process_environment.
22183 (shut_down_emacs): Call reset_all_sys_modes() instead of
22184 reset_sys_modes().
22185
22186 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
22187 (internal_resolve_face_name, resolve_face_name_error): New functions.
22188 (resolve_face_name): Protect against loops and errors thrown by Fget.
22189 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
22190 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
22191
22192 * scroll.c: Replace CURTTY() with local variables throughout the
22193 file (where applicable).
22194 (calculate_scrolling, calculate_direct_scrolling)
22195 (scrolling_1, scroll_cost): Use the accessor macros for terminal
22196 characteristics.
22197
22198 * keymap.c (Vfunction_key_map): Remove.
22199 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
22200 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
22201 (Vkey_translation_map): Remove.
22202 (syms_of_keymap): Remove DEFVAR for key-translation-map.
22203 (Fdescribe_buffer_bindings)
22204 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
22205 Update for terminal-local key-translation-map.
22206
22207 * Makefile.in (callproc.o): Update dependencies.
22208 (lisp, shortlisp): Add termdev.elc.
22209 (obj): Add terminal.o.
22210 (terminal.o): Add dependencies.
22211 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
22212 (data.o, fns.o): Add termhooks.h dependency.
22213 (SOME_MACHINE_LISP): Add dnd.elc.
22214 (minibuf.o): Fix typo.
22215 Update dependencies.
22216
22217 * data.c (do_symval_forwarding, store_symval_forwarding)
22218 (find_symbol_value): Use the selected frame's keyboard, not
22219 current_kboard.
22220
22221 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
22222 Vwindow_system.
22223
22224 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
22225 Fmenu_bar_open.
22226 (syms_of_xmenu): Update defsubr.
22227 (mouse_position_for_popup, Fx_popup_menu)
22228 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
22229 (set_frame_menubar, free_frame_menubar)
22230 (create_and_show_popup_menu, xmenu_show)
22231 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
22232 an X frame.
22233
22234 * xselect.c (x_own_selection): Abort if not an X frame.
22235 (some_frame_on_display): Check if it is an X frame.
22236 (x_handle_selection_clear): Deal with MULTI_KBOARD.
22237
22238 * coding.c: Include frame.h and termhooks.h.
22239 (terminal_coding, keyboard_coding): Delete.
22240 (Fset_terminal_coding_system_internal)
22241 (Fset_keyboard_coding_system_internal)
22242 (Fkeyboard_coding_system)
22243 (Fterminal_coding_system): Add a terminal parameter.
22244 Get terminal_coding from the terminal.
22245 (init_coding_once): Don't call setup_coding_system here.
22246
22247 * dispextern.h (set_scroll_region, turn_off_insert)
22248 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
22249 (tty_clear_end_of_line, tty_setup_colors)
22250 (delete_tty, updating_frame)
22251 (produce_special_glyphs, produce_glyphs, write_glyphs)
22252 (insert_glyphs): Remove.
22253 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
22254 (tty_turn_off_highlight, get_tty_size): Add declaration.
22255 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
22256
22257 * frame.h (enum output_method): Add output_initial.
22258 (struct x_output): Delete.
22259 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
22260 Access foreground_pixel and background_pixel directly from the frame.
22261 (tty_display): Delete.
22262 (struct frame): Add buried_buffer_list, foreground_pixel,
22263 background_pixel and terminal. Delete kboard.
22264 (union output_data): Add tty.
22265 (FRAME_KBOARD): Get the kboard from the terminal.
22266 (FRAME_INITIAL_P): New macro.
22267 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
22268 (Qterm_environment_variable, Qdisplay_environment_variable)
22269 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
22270 New declarations.
22271
22272 * termchar.h (tty_output, tty_display_info): New structures.
22273 (tty_list): Declare.
22274 (FRAME_TTY, CURTTY): New macros.
22275 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
22276 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
22277 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
22278 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
22279
22280 * callproc.c: Include frame.h and termhooks.h, for terminal
22281 parameters.
22282 (add_env): New function.
22283 (child_setup): Use it.
22284 (child_setup, getenv_internal): Handle the new Vprocess_environment.
22285 (getenv_internal): Fix get_terminal_param call.
22286 (Fgetenv_internal, egetenv): Update doc.
22287 (syms_of_callproc): Initialize Vprocess_environment to nil.
22288 Register and initialize them. Remove obsolete defvars. Update doc
22289 strings.
22290 (child_setup): Handle Vlocal_environment_variables.
22291 (getenv_internal): Add terminal parameter.
22292 Handle Vlocal_environment_variables.
22293 (Fgetenv_internal): Add terminal parameter.
22294 (child_setup, getenv_internal, Fgetenv_internal): Store the local
22295 environment in a frame (not terminal) parameter. Update doc strings.
22296 (set_initial_environment): Rename from set_global_environment.
22297 Store Emacs environment in initial frame parameter.
22298
22299 * xdisp.c (redisplay_internal): Update references to
22300 `previous_terminal_frame'.
22301 (display_mode_line, Fformat_mode_line): Replace calls to
22302 `push_frame_kboard' with `push_kboard'.
22303 (get_glyph_string_clip_rects): Add extra parentheses and
22304 braces to prevent compiler warnings.
22305 (calc_pixel_width_or_height): Add xassert to check that the
22306 frame is alive. Don't call `lookup_image' on a termcap frame.
22307 (message2_nolog, message3_nolog, redisplay_internal)
22308 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
22309 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
22310 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
22311 (Fx_display_pixel_width, Fx_display_pixel_height)
22312 (Fx_display_planes, Fx_display_color_cells)
22313 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
22314 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
22315 (Fx_display_backing_store, Fx_display_visual_class)
22316 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
22317 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
22318
22319 * xfns.c (x_set_foreground_color x_set_background_color)
22320 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
22321 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22322 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
22323 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
22324 terminal that is being deleted.
22325 (Fx_create_frame): Use `store_frame_param' to set `window-system'
22326 frame parameter, and make sure it overrides any user-supplied setting.
22327 (Fx_close_connection, Fx_synchronize): Unify argument names with
22328 the rest of the DEFUNs.
22329
22330 * dispnew.c (Fsend_string_to_terminal): Update call to
22331 `get_tty_terminal'.
22332 (Fredraw_frame, Fsend_string_to_terminal)
22333 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
22334 FRAME_TERMCAP_P and FRAME_TTY.
22335 (window_change_signal): Don't believe width/height values that are
22336 impossibly small.
22337 (Vinitial_window_system): Rename from Vwindow_system.
22338 (termscript, Wcm, rif): Delete.
22339
22340 * termhooks.h (struct terminal): New struct containing the
22341 previously global text display hooks and new members NAME,
22342 DELETED and PARAM_ALIST.
22343 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
22344 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
22345 (FRAME_RIF): New macros.
22346 (get_terminal_param, get_device): New declarations.
22347 (termscript): Delete declaration.
22348
22349 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
22350 (XTflash, x_free_frame_resources, x_scroll_bar_create)
22351 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
22352 FRAME_FOREGROUND_PIXEL.
22353 (x_fully_uncatch_errors): Disable definition.
22354 (x_scroll_bar_expose): Fix reference to foreground pixel.
22355 (XTread_socket): Disable loop on all X displays.
22356 (x_delete_terminal): Don't set terminal->deleted and let
22357 delete_terminal delete the frames on the terminal.
22358 (x_delete_display): Doc update to reflect changes in
22359 delete_terminal.
22360 (x_display_info) <terminal>: Move member earlier in the struct.
22361 (deleting_tty): Remove old variable.
22362 (Fsuspend_tty): Call clear_tty_hooks.
22363 (Fresume_tty, init_tty): Call set_tty_hooks.
22364 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
22365 errors on X frames.
22366 (x_catch_errors_unwind): Abort if x_error_message is NULL.
22367 (handle_one_xevent): Initialize `f' to NULL.
22368 (x_delete_terminal, x_create_terminal): New functions.
22369 (XTset_terminal_modes, XTreset_terminal_modes)
22370 (XTread_socket, x_connection_closed, x_term_init)
22371 (x_term_init, x_delete_display): Add terminal parameter.
22372 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
22373 X connections.
22374
22375 * frame.c: Include termchar.h.
22376 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
22377 (Qwindow_system, Qenvironment, Qterm_environment_variable)
22378 (Qdisplay_environment_variable): New vars.
22379 (Fframep): Deal with output_initial.
22380 (Fframe-live-p): Doc fix.
22381 (Fwindow-system): New function.
22382 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
22383 (make_terminal_frame): Don't create frames on a terminal that is
22384 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22385 (store_frame_param): Check for found_for_frame before calling XFRAME.
22386 (Fmake_terminal_frame): Handle NULL tty names correctly.
22387 (syms_of_frame): Enhance doc string of `default-frame-alist'.
22388 (Fdelete_frame): Remove unused variable `count'. Don't allow other
22389 frames to refer to a deleted frame in their 'environment parameter.
22390 (Fframe_with_environment): New function.
22391 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
22392 (get_future_frame_param): New function.
22393 (Fmake_terminal_frame): Use it.
22394 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
22395
22396 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
22397 * sysdep.c (reset_sys_modes): Update for renames.
22398
22399 * keyboard.c (tty_read_avail_input): New function.
22400 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
22401 (syms_of_keyboard): Defsubr them.
22402 (Fset_input_meta_mode, Fset_quit_char): New functions.
22403 (Fset_input_mode): Split to above functions.
22404 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
22405 parameter. Use it in call to `read_char'.
22406 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
22407 Set wrong_kboard_jmpbuf correctly in recursive calls.
22408 Use current_kboard to access Vkeyboard_translate_table.
22409 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
22410 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
22411 Update longjmp invocations. Remember the original current_kboard,
22412 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
22413 changes it. Comment out unnecessary calls to
22414 `record_single_kboard_state' and `any_kboard_state'.
22415 Update recursive calls.
22416 (wrong_kboard_jmpbuf): Remove global variable.
22417 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
22418 Handle deleted interrupted_kboards correctly; that is a legal
22419 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
22420 and read_char calls. Abort if interrupted_kboard died in read_char.
22421 (any_kboard_state, single_kboard_state)
22422 (push_frame_kboard): Remove function.
22423 (pop_kboard): Switch out of single_kboard mode if the kboard has
22424 been deleted. Remove unused variable. Help debugging by not
22425 changing current_kboard unnecessarily. Set current_kboard to the
22426 kboard of the selected frame when the stored kboard object has
22427 been deleted before pop_kboard.
22428 (temporarily_switch_to_single_kboard): Change first parameter to a
22429 frame pointer. Throw an error when caller wants to change kboards
22430 while in single_kboard mode. Don't push_kboard if we weren't in
22431 single kboard state. Don't pop_kboard if we popped into any
22432 kboard state.
22433 (restore_kboard_configuration): Abort if pop_kboard changed the
22434 kboard in single_kboard mode. Call pop_kboard only after setting
22435 up single_kboard mode.
22436 (Frecursive_edit): Switch to single_kboard mode only in nested
22437 command loops.
22438 (cmd_error, command_loop, command_loop_1, timer_check):
22439 Comment out unnecessary call to `any_kboard_state' and
22440 `record_single_kboard_state'.
22441 (delete_kboard): Exit single_kboard mode if we have just deleted
22442 that kboard. Use FRAME_KBOARD.
22443 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
22444 `fatal_error_signal'.
22445 (record_single_kboard_state): Don't push_kboard if we weren't in
22446 single kboard state. Don't pop_kboard if we popped into any
22447 kboard state.
22448 (push_frame_kboard): Rename to push_kboard.
22449 (kbd_buffer_get_event): Use FRAME_TERMINAL.
22450 (read_avail_input): Read input from all terminals.
22451 (mark_kboards): Also mark Vkeyboard_translate_table.
22452 (kbd_buffer_store_event_hold): Simplify condition.
22453 (read_key_sequence): Reinitialize fkey and keytran at each replay.
22454 (Vkeyboard_translate_table): Move to struct kboard.
22455 (init_kboard): Initialize Vkeyboard_translate_table.
22456 (syms_of_keyboard): Use DEFVAR_KBOARD to define
22457 Vkeyboard_translate_table. Update doc strings. Update docs of
22458 local-function-key-map and function-key-map.
22459
22460 * terminal.c: New file.
22461
22462 * term.c: Include errno.h.
22463 (Vring_bell_function, device_list, initial_device)
22464 (next_device_id, ring_bell, update_begin, update_end)
22465 (set_terminal_window, cursor_to, raw_cursor_to)
22466 (clear_to_end, clear_frame, clear_end_of_line)
22467 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
22468 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
22469 (syms_of_term): Move their initialization to terminal.c.
22470 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
22471 (Ftty_display_color_cells)
22472 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
22473 (clear_tty_hooks, set_tty_hooks)
22474 (init_tty, maybe_fatal): New functions.
22475 (Ftty_type): Return nil if terminal is not on a tty instead of
22476 throwing an error. Doc update.
22477 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
22478 Doc update. Initialize new subrs and variables.
22479 (delete_tty): Use terminal->deleted.
22480 (tty_set_terminal_modes): Rename from set_terminal_modes.
22481 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
22482 (set_scroll_region): Rename to `tty_set_scroll_region'.
22483 (turn_on_insert): Rename to `tty_turn_on_insert'.
22484 (turn_off_insert): Rename to `tty_turn_off_insert'.
22485 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
22486 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
22487 (toggle_highligh): Rename to `tty_toggle_highlight'.
22488 (background_highlight): Rename to `tty_background_highlight'.
22489 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
22490 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
22491 (tty_set_scroll_region, tty_background_highlight)
22492 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
22493 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
22494 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
22495 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
22496 Add static modifier.
22497 (tty_reset_terminal_modes, tty_set_terminal_window)
22498 (tty_set_scroll_region, tty_background_highlight)
22499 (tty_highlight_if_desired, tty_cursor_to)
22500 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
22501 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
22502 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
22503 renames.
22504
22505 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
22506
22507 * keyboard.c: Qrtl is new.
22508 (parse_tool_bar_item): Handle :rtl keyword.
22509 (syms_of_keyboard): Intern :rtl keyword.
22510
22511 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
22512
22513 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
22514 so no Lisp code is executed.
22515 (file_for_image, find_rtl_image): New functions.
22516 (xg_get_image_for_pixmap): Use file_for_image.
22517 (update_frame_tool_bar): If direction is RTL, use RTL image if
22518 defined. Use Gtk stock images if defined.
22519
22520 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22521
22522 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
22523 for nonexistent or zero-width glyph in composition glyph.
22524
22525 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
22526
22527 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
22528
22529 * xdisp.c (Finvisible_p): New function.
22530 (syms_of_xdisp): defsubr it.
22531
22532 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
22533
22534 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
22535 Doc fixes.
22536
22537 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22538
22539 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
22540
22541 2007-08-24 Martin Rudalics <rudalics@gmx.at>
22542
22543 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
22544 whether decoding has modified buffer contents.
22545
22546 2007-08-24 Jason Rumney <jasonr@gnu.org>
22547
22548 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
22549 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
22550 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
22551 (init_svg_functions) [HAVE_NTGUI]: New function.
22552 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
22553 (svg_load_image): Use them.
22554 (svg_load_image) [HAVE_NTGUI]: Implement background.
22555
22556 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22557
22558 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
22559 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
22560 (LIBX): Remove @RSVG_LIBS@.
22561 (LIBES): Add $(RSVG_LIBS).
22562
22563 * image.c (svg_load_image): Blend with specified background if exists.
22564 Use IMAGE_BACKGROUND. Add Mac OS Support.
22565
22566 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
22567 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
22568 Remove macros.
22569 [MAC_OSX] (socket_callback): Do nothing.
22570 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
22571 ReceiveNextEvent.
22572 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
22573 socket_callback.
22574 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
22575
22576 2007-08-22 Glenn Morris <rgm@gnu.org>
22577
22578 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
22579
22580 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
22581
22582 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
22583
22584 * image.c: Add support for SVG images. Some additional comments
22585 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
22586 (svg_image_p): New function to test for SVG image.
22587 (svg_load): New function to load SVG image.
22588 (svg_load_image): New function, helper for svg_load.
22589 (Qsvg): New Lisp_object.
22590 (svg_keyword_index): New enum.
22591 (svg_format): New static `image_keyword' struct.
22592 (svg_type): New static `image_type' struct.
22593 (librsvg/rsvg.h): Include it.
22594
22595 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
22596
22597 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
22598
22599 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
22600
22601 * lread.c (Qold_style_backquotes): New var.
22602 (syms_of_lread): Init and staticpro it.
22603 (load_warn_old_style_backquotes): New fun.
22604 (Fload): Use them to warn about old style backquotes.
22605 (end_of_file_error, Fload): Remove unused vars.
22606
22607 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
22608
22609 * lread.c (Vold_style_backquotes): New var.
22610 (syms_of_lread): Init and export it to Elisp.
22611 (read1): Set it when we find an old-style (back)quote.
22612
22613 2007-08-22 Jason Rumney <jasonr@gnu.org>
22614
22615 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
22616
22617 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
22618
22619 * puresize.h (BASE_PURESIZE): Increase to 1140000.
22620
22621 2007-08-19 Richard Stallman <rms@gnu.org>
22622
22623 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
22624
22625 2007-08-19 Andreas Schwab <schwab@suse.de>
22626
22627 * alloc.c (pure): Round PURESIZE up.
22628
22629 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
22630
22631 * xterm.c (handle_one_xevent): Remove check that mouse click is in
22632 active frame.
22633
22634 2007-08-16 Richard Stallman <rms@gnu.org>
22635
22636 * eval.c (Fcommandp): Add parens to clarify.
22637
22638 * minibuf.c (Fall_completions): Use enum for type of table.
22639
22640 * emacs.c (USAGE2): Improve text.
22641
22642 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
22643
22644 * term.c (tty_default_color_capabilities): Declare static
22645 variables in file scope, to avoid HPUX compiler problem.
22646
22647 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
22648
22649 * gtkutil.c (update_frame_tool_bar): Use -1 as index
22650 to gtk_toolbar_insert.
22651
22652 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
22653
22654 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
22655
22656 * insdel.c (reset_var_on_error): New fun.
22657 (signal_before_change, signal_after_change):
22658 Use it to reset (after|before)-change-functions to nil in case of error.
22659 Bind inhibit-modification-hooks to t.
22660 Don't bind (after|before)-change-functions to nil while they run.
22661
22662 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22663
22664 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
22665 filling pixmap with stippled background.
22666
22667 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22668
22669 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
22670 Don't use invisible frame as parent window for repositioning.
22671
22672 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
22673
22674 * print.c (new_backquote_output): Rename from old_backquote_output.
22675 (print): Inverse its logic (according to its name) so as to match the
22676 behavior of new_backquote_flag in lread.c.
22677
22678 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22679
22680 * gmalloc.c (posix_memalign): New function.
22681
22682 * macterm.c (frame_highlight, frame_unhighlight): Don't call
22683 ActivateControl/DeactivateControl here.
22684 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
22685 frame-notice-user-settings is non-nil.
22686 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
22687 for kEventParamFMFontStyle.
22688 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
22689 mac_pass_command_to_system and mac_pass_control_to_system here.
22690 (XTread_socket): Call ActivateControl/DeactivateControl here.
22691 (XTread_socket) [TARGET_API_MAC_CARBON]:
22692 Check mac_pass_command_to_system and mac_pass_control_to_system here.
22693 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
22694 for window repositioning.
22695
22696 2007-08-08 Glenn Morris <rgm@gnu.org>
22697
22698 * Replace `iff' in doc-strings and comments.
22699
22700 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
22701
22702 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
22703
22704 2007-08-07 Martin Rudalics <rudalics@gmx.at>
22705
22706 * fileio.c (Finsert_file_contents): Run format-decode and
22707 after_insert_file_functions on entire buffer when REPLACE is
22708 non-nil and inhibit modification_hooks and point_motion_hooks.
22709 For consistency, run after_insert_file_functions iff something
22710 got inserted. Move signal_after_change and update_compositions
22711 after code running after_insert_file_functions. Make sure that
22712 undo_list doesn't record intermediate steps of the decoding process.
22713
22714 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22715
22716 * emacs.c (main)
22717 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
22718 Call malloc_enable_thread on interactive startup.
22719
22720 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
22721 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
22722 [USE_PTHREAD]: Conditionalize with it.
22723 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
22724 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
22725 New functions.
22726
22727 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
22728
22729 * xdisp.c (redisplay_window): When restoring original buffer
22730 position, make sure it is still valid.
22731
22732 * image.c (png_load): Ignore png-supplied background color.
22733
22734 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22735
22736 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
22737 Use kCFAbsoluteTimeIntervalSince1970.
22738
22739 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
22740 New variable.
22741 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
22742 event loop should be quit.
22743 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
22744 Quit dialog event loop if quit_dialog_event_loop is set.
22745
22746 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
22747 (Selection): New typedef. Use instead of ScrapRef.
22748 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
22749 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
22750 (mac_clear_selection): Rename from clear_scrap.
22751 (get_flavor_type_from_symbol): New argument SEL and subsume function of
22752 scrap_has_target_type. All uses changed.
22753 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
22754 (mac_selection_has_target_p): New functions.
22755 (mac_put_selection_value): Rename from put_scrap_string.
22756 (mac_get_selection_value): Rename from get_scrap_string.
22757 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
22758 (put_scrap_private_timestamp, scrap_has_target_type)
22759 (get_scrap_private_timestamp): Remove functions.
22760 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
22761 (x_own_selection, x_get_local_selection):
22762 Use mac_valid_selection_value_p.
22763 (x_own_selection): Don't use put_scrap_private_timestamp.
22764 Record OWNERSHIP-INFO into Vselection_alist instead.
22765 (x_get_local_selection): Don't check type if request is local.
22766 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
22767 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
22768
22769 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
22770
22771 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
22772 add comment explaining why.
22773
22774 2007-08-03 Richard Stallman <rms@gnu.org>
22775
22776 * fileio.c (Fvisited_file_modtime): Use make_time.
22777
22778 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
22779
22780 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
22781 build.
22782
22783 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
22784
22785 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
22786
22787 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
22788
22789 * puresize.h (BASE_PURESIZE): Increase to 1130000.
22790
22791 2007-07-30 Richard Stallman <rms@gnu.org>
22792
22793 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
22794
22795 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
22796
22797 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
22798
22799 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
22800
22801 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
22802 remote default-directory.
22803
22804 * buffer.c (mode-line-format): Update doc string.
22805
22806 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22807
22808 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
22809 scroll bar gap.
22810 (x_scroll_bar_create): Set bar->fringe_extended_p.
22811 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
22812 on frame edge. Check fringe background extension. Don't clear
22813 extended fringe background area.
22814
22815 * w32term.h (struct scroll_bar): New member fringe_extended_p.
22816 (w32_fill_area): Enclose multiple statements with do ... while (0).
22817
22818 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
22819 Extend fringe background to scroll bar gap.
22820 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
22821 Set bar->fringe_extended_p.
22822 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
22823 Put leftmost/rightmost scroll bars on frame edge. Check fringe
22824 background extension. Don't clear extended fringe background area.
22825
22826 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
22827 New member fringe_extended_p.
22828
22829 2007-07-25 Glenn Morris <rgm@gnu.org>
22830
22831 * Relicense all FSF files to GPLv3 or later.
22832
22833 * COPYING: Switch to GPLv3.
22834
22835 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
22836
22837 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
22838
22839 * data.c (Finteractive_form): Check for the presence of an
22840 `interactive-form' symbol property more thoroughly.
22841
22842 * data.c (Finteractive_form): Use an `interactive-form' property if
22843 present, analogous to the function-documentation property.
22844
22845 2007-07-24 Jason Rumney <jasonr@gnu.org>
22846
22847 * w32fns.c (x_real_positions): Get real position from OS instead of
22848 calculating it.
22849
22850 2007-07-23 Jason Rumney <jasonr@gnu.org>
22851
22852 * filelock.c (current_lock_owner): Allow for @ sign in username.
22853
22854 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
22855
22856 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
22857 remote default-directory.
22858
22859 * buffer.c (mode-line-format): Describe above case in doc string.
22860
22861 2007-07-20 Eli Zaretskii <eliz@gnu.org>
22862
22863 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
22864 Define if not defined.
22865
22866 2007-07-18 Jason Rumney <jasonr@gnu.org>
22867
22868 * w32proc.c (w32_executable_type): Handle 64 bit executables.
22869
22870 2007-07-18 Richard Stallman <rms@gnu.org>
22871
22872 * data.c (Fsetq_default): Doc fix.
22873
22874 * eval.c (Fsetq): Doc fix.
22875
22876 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
22877
22878 * coding.c (Ffind_operation_coding_system):
22879 * eval.c (For, Fand): Doc fixes.
22880 Reported by Johan Bockgård.
22881
22882 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
22883
22884 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
22885
22886 * xterm.h: Declare x_ewmh_activate_frame.
22887
22888 * xterm.c (x_ewmh_activate_frame): New function.
22889 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
22890
22891 2007-07-17 Martin Rudalics <rudalics@gmx.at>
22892
22893 * window.c (Fdisplay_buffer): If largest or LRU window is the
22894 only window, split it even if it is not eligible for splitting.
22895 This restores the original behavior broken by the 2007-07-15
22896 change.
22897
22898 2007-07-17 Glenn Morris <rgm@gnu.org>
22899
22900 * abbrev.c (abbrev_check_chars): New function.
22901 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
22902 Call abbrev_check_chars to check abbrev characters are word
22903 constituents. Doc fix.
22904
22905 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
22906
22907 * process.c (Fstart_process, Fmake_network_process)
22908 (read_process_output): Fix up last changes.
22909
22910 2007-07-16 Eli Zaretskii <eliz@gnu.org>
22911
22912 * makefile.w32-in (clean): Don't delete *~.
22913
22914 2007-07-16 Andreas Schwab <schwab@suse.de>
22915
22916 * window.c (Fdisplay_buffer): Use NILP.
22917 (Fset_window_scroll_bars): Likewise.
22918
22919 2007-07-15 Martin Rudalics <rudalics@gmx.at>
22920
22921 * window.c (window_min_size_2): New function.
22922 (window_min_size_1, size_window, Fdisplay_buffer)
22923 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
22924 windows without mode- or header-lines when window-min-height is
22925 too small.
22926 (size_window): Reset nodelete_p after testing it, following an
22927 earlier note by Kim F. Storm.
22928 (display_buffer): Do not set split_height_threshold to twice the
22929 value of window_min_height to avoid changing the value of a
22930 customizable variable. Rather explicitly check whether the
22931 height of the window that shall be splitted is at least as large
22932 as split_height_threshold.
22933 (Fwindow_full_width_p): New defun.
22934 (syms_of_window): Defsubr it.
22935
22936 * window.h: Add EXFUN for Fwindow_full_width_p.
22937
22938 2007-07-14 Jason Rumney <jasonr@gnu.org>
22939
22940 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
22941
22942 2007-07-14 Richard Stallman <rms@gnu.org>
22943
22944 * eval.c (maybe_call_debugger): New function.
22945 (find_handler_clause): Use maybe_call_debugger.
22946 Call it when the handler says `debug'.
22947 Eliminate DEBUGGER_VALUE_PTR.
22948 (Fsignal): Eliminate debugger_value.
22949 (Qdebug): New variable.
22950 (syms_of_eval): Initialize it.
22951
22952 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
22953
22954 * eval.c (Fprogn):
22955 * keyboard.c (Ftrack_mouse):
22956 * print.c (Fwith_output_to_temp_buffer):
22957 * window.c (Fsave_window_excursion): Doc fix.
22958
22959 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
22960
22961 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
22962
22963 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
22964
22965 * process.h (struct Lisp_Process): Turn slots infd, outfd,
22966 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
22967 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
22968 read_output_delay, and read_output_skip from Lisp_Objects to ints.
22969 Remove unused encoding_carryover.
22970 * process.c: Adjust all functions accordingly.
22971
22972 2007-07-12 Richard Stallman <rms@gnu.org>
22973
22974 * term.c: Include unistd.h only if HAVE_UNISTD_H.
22975
22976 2007-07-11 Jason Rumney <jasonr@gnu.org>
22977
22978 * makefile.w32-in (LIBS): Include OLE32.
22979
22980 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
22981 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
22982
22983 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
22984
22985 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
22986 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
22987 from a Lisp_Object into a bare pointer.
22988 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
22989 Adjust the code correspondingly.
22990
22991 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
22992
22993 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
22994 (term_show_mouse_face): Remove unused var `j'.
22995 (handle_one_term_event): Remove unused vars `i' and `j'.
22996 Don't cast return value of ttyname since it's not necessary.
22997
22998 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
22999
23000 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
23001 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
23002
23003 * fns.c (map_char_table): Use an array of int for `indices' rather than
23004 an array of Lisp_Objects (which are only ever integers anyway).
23005 (Fmap_char_table): Update caller.
23006 * lisp.h: Update prototype.
23007 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
23008 * fontset.c (Ffontset_info):
23009 * casetab.c (set_case_table): Update callers.
23010
23011 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
23012
23013 * keymap.c (struct accessible_keymaps_data)
23014 (struct where_is_internal_data): New structures.
23015 (accessible_keymaps_1, where_is_internal_1): Use them to change
23016 interface to adhere to the one used by map_keymap.
23017 (Faccessible_keymaps, where_is_internal): Use map_keymap.
23018 (accessible_keymaps_char_table, where_is_internal_2): Remove.
23019
23020 * keymap.h (map_keymap_function_t): More informative prototype.
23021
23022 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
23023
23024 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
23025 (looking_at_1): Don't change search_regs and last_thing_searched
23026 if `inhibit-changing-match-data' is non-nil.
23027 (string_match_1, search_buffer, set_search_regs): Likewise.
23028 (syms_of_search): Add Lisp level definition for
23029 `inhibit-changing-match-data' and set it to nil.
23030 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
23031 start and end of the match, instead of using values in search_regs.
23032
23033 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
23034
23035 * minibuf.c (Fcompleting_read): New value `confirm-only'
23036 for `require-match'.
23037
23038 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
23039
23040 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
23041 part of the 2007-06-27 change to syms_of_fileio.
23042
23043 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23044
23045 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
23046 Check WINDOWP before using XWINDOW. Consolidate return statements.
23047
23048 2007-06-27 Richard Stallman <rms@gnu.org>
23049
23050 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
23051
23052 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
23053
23054 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
23055
23056 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23057
23058 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
23059 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
23060 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
23061 (_free_internal, memalign): Use them.
23062 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
23063 Initialize to PTHREAD_MUTEX_INITIALIZER.
23064 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
23065 (morecore_nolock): Rename from morecore. All uses changed.
23066 Use only nolock versions of internal allocation functions.
23067 (_malloc_internal_nolock, _realloc_internal_nolock)
23068 (_free_internal_nolock): New functions created from
23069 _malloc_internal, _realloc_internal, and _free_internal.
23070 (_malloc_internal, _realloc_internal, _free_internal): Use them.
23071 Copy hook value to automatic variable before its use.
23072 (memalign): Copy hook value to automatic variable before its use.
23073
23074 2007-06-26 Kenichi Handa <handa@m17n.org>
23075
23076 * coding.c (Ffind_operation_coding_system): Docstring improved.
23077 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
23078
23079 2007-06-25 David Kastrup <dak@gnu.org>
23080
23081 * keymap.c (Fcurrent_active_maps): Add `position' argument.
23082 (Fwhere_is_internal): Adjust call to `current-active-maps' to
23083 cater for additional parameter.
23084
23085 * keymap.h: Adjust number of parameters to `current-active-maps'.
23086
23087 * doc.c (Fsubstitute_command_keys): Adjust call of
23088 `current-active-maps'.
23089
23090 2007-06-25 David Kastrup <dak@gnu.org>
23091
23092 * callint.c (Fcall_interactively): Make the parsing of interactive
23093 specs somewhat more readable.
23094
23095 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23096
23097 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
23098 to scroll bar gap also when bitmap fills fringe. Draw only foreground
23099 if extended background has already been filled.
23100
23101 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23102
23103 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
23104 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
23105
23106 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
23107 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
23108 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
23109 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
23110 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
23111 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
23112 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
23113 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
23114 Run timers during dialog popup.
23115 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
23116
23117 2007-06-21 Jason Rumney <jasonr@gnu.org>
23118
23119 * image.c (convert_mono_to_color_image): Swap fore and background.
23120
23121 2007-06-20 Jason Rumney <jasonr@gnu.org>
23122
23123 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
23124 (w32_free_bdf_font): Unmap memory not handle.
23125
23126 2007-06-20 Sam Steingold <sds@gnu.org>
23127
23128 * gmalloc.c (__morecore): Fix the declaration to comply with the
23129 definition.
23130
23131 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
23132
23133 * w32term.c (w32_delete_display): Remove leftover declaration.
23134 (w32_define_cursor, w32_initialize): Make static.
23135
23136 * w32.c (_wsa_errlist): Fix typo in error message.
23137 (init_environment): Ignore any environment variable from the
23138 registry having a null value.
23139
23140 2007-06-20 Glenn Morris <rgm@gnu.org>
23141
23142 * Makefile.in (LIBGIF): Default to -lgif.
23143
23144 2007-06-17 Jason Rumney <jasonr@gnu.org>
23145
23146 * w32menu.c (add_menu_item): Don't use multibyte string functions on
23147 unicode strings.
23148
23149 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
23150
23151 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
23152 Fix typo in docstring.
23153
23154 2007-06-16 Eli Zaretskii <eliz@gnu.org>
23155
23156 * w32menu.c (add_menu_item): Escape `&' characters in menu items
23157 and their keybindings.
23158
23159 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
23160
23161 * composite.c (update_compositions): Fix last fix.
23162
23163 2007-06-14 Jason Rumney <jasonr@gnu.org>
23164
23165 * w32.c (get_process_times_fn): New function pointer.
23166 (globals_of_w32): Intialize it if present in kernel32.dll.
23167 (w32_get_internal_run_time): New function.
23168
23169 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
23170
23171 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
23172
23173 * composite.c (update_compositions): Check the validness of
23174 compositions.
23175
23176 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23177
23178 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
23179 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
23180
23181 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
23182 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
23183
23184 * macgui.h (USE_MAC_TOOLBAR): New define.
23185
23186 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
23187 Return immediately unless popup is activated.
23188
23189 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
23190 background to scroll bar gap.
23191 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
23192 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
23193 scroll bars on frame edge. Check fringe background extension.
23194 Don't clear extended fringe background area.
23195 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
23196 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
23197 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
23198 [USE_MAC_TOOLBAR]: New macros.
23199 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
23200 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
23201 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
23202 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
23203 [USE_MAC_TOOLBAR]: New functions.
23204 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
23205 manually if previous repositioning has failed.
23206 (mac_handle_keyboard_event): Use precomputed event kind.
23207 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
23208 as tool bar item click. Handle mouse movement over tool bar items.
23209
23210 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
23211 toolbar_win_gravity.
23212 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
23213 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
23214 Add externs.
23215
23216 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
23217 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
23218
23219 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
23220
23221 * image.c (search_image_cache): Remove unused variable.
23222
23223 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
23224
23225 * xfns.c, xmenu.c: Link to xaw3d if available.
23226
23227 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23228
23229 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
23230 frame_foreground and frame_background.
23231
23232 * image.c (lookup_image): Save frame foreground and background colors.
23233 (search_image_cache): Check if saved and current frame colors match.
23234
23235 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
23236
23237 * regex.c (regex_compile): Remove the `regnum' counter.
23238 Use bufp->re_nsub instead. Add support for \(?N:RE\).
23239
23240 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
23241
23242 * term.c: Include intervals.h to declare Fget_text_property.
23243
23244 2007-06-10 Jason Rumney <jasonr@gnu.org>
23245
23246 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
23247
23248 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
23249
23250 * callint.c (Fcall_interactively):
23251 * editfns.c (Fdelete_and_extract_region):
23252 * fileio.c (Fread_file_name):
23253 * fns.c (Fmapconcat):
23254 * keyboard.c (cmd_error_internal):
23255 * keymap.c (Fkey_description):
23256 * lread.c (openp):
23257 * minibuf.c (read_minibuf):
23258 * search.c (wordify):
23259 * sunfns.c (sel_read):
23260 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
23261 * xfns.c (x_default_scroll_bar_color_parameter):
23262 * xmenu.c (menu_help_callback):
23263 * xselect.c (Fx_get_atom_name):
23264 * xterm.c (x_term_init): Use empty_unibyte_string.
23265
23266 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
23267
23268 * alloc.c (init_strings): Initialize canonical empty strings.
23269 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
23270 canonical empty string when the requested size is 0.
23271
23272 * emacs.c (empty_unibyte_string): Rename from empty_string.
23273 (empty_multibyte_string): New canonical empty string.
23274 (syms_of_emacs): Don't initialize empty_string.
23275
23276 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
23277 string, if appropriate.
23278 (empty_unibyte_string, empty_multibyte_string): New externs.
23279 (empty_string): Remove extern.
23280
23281 * lread.c (syms_of_lread): Use empty_unibyte_string.
23282
23283 2007-06-07 Jason Rumney <jasonr@gnu.org>
23284
23285 * s/ms-w32.h: Don't define HAVE_TZNAME.
23286
23287 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
23288
23289 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23290
23291 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
23292
23293 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
23294 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
23295
23296 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
23297 Don't call next handler.
23298 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
23299 Remove argument. Install handler to application.
23300 (set_frame_menubar): Don't change deep_p.
23301 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
23302 FRAME_OUTER_TO_INNER_DIFF_Y.
23303 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
23304 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
23305 [HAVE_DIALOGS]: New macros.
23306 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
23307 Use them.
23308 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
23309
23310 * macselect.c [MAC_OSX] (install_service_handler): Rename from
23311 init_service_handler. All callers changed. Return OSStatus value.
23312
23313 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
23314 All callers changed so as not to call SetPortWindowPort.
23315 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
23316 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
23317 mac_draw_string_common.
23318 (mac_draw_image_string_qd): Likewise.
23319 (mac_draw_string_common): Use them. Add INLINE.
23320 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
23321 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
23322 GetGlobalMouse.
23323 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
23324 and FRAME_OUTER_TO_INNER_DIFF_Y.
23325 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
23326 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
23327 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
23328 repositioning window to mac_handle_window_event.
23329 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
23330 saving window location to mac_handle_window_event
23331 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
23332 (install_menu_target_item_handler): Remove argument in extern.
23333 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
23334 Also accept command events.
23335 (do_keystroke): New function created from XTread_socket.
23336 (init_command_handler): Remove functions.
23337 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
23338 and save window location by kEventWindowShowing and kEventWindowHiding
23339 handlers here. Don't call next handler for window state change and
23340 focus events.
23341 (mac_handle_application_event, mac_handle_keyboard_event)
23342 [TARGET_API_MAC_CARBON]: New functions.
23343 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
23344 kEventWindowShowing and kEventWindowHiding events. Move installation
23345 of mouse, font, text input and menu target item handlers to
23346 install_application_handler.
23347 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
23348 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
23349 New function.
23350 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
23351 Register it.
23352 (XTread_socket) [TARGET_API_MAC_CARBON]:
23353 Consolidate SendEventToEventTarget calls.
23354 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
23355 Move application activation handler to mac_handle_application_event.
23356 Move keyboard handler to mac_handle_keyboard_event.
23357 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
23358 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
23359 init_command_handler. Call install_application_handler.
23360
23361 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
23362 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
23363
23364 2007-06-07 Glenn Morris <rgm@gnu.org>
23365
23366 * emacs.c (main): Use `emacs-copyright' in --version output.
23367
23368 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
23369
23370 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
23371
23372 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23373
23374 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
23375
23376 * macgui.h: Replace WindowPtr with WindowRef.
23377
23378 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
23379 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
23380 Replace ControlHandle with ControlRef.
23381 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
23382
23383 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
23384 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
23385 Replace ControlHandle with ControlRef.
23386 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
23387 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
23388
23389 * macterm.h (struct scroll_bar): Rename member control_handle_low
23390 and control_handle_high to control_ref_low and control_ref_high.
23391 All uses changed.
23392 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
23393 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
23394 respectively. All uses changed.
23395 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
23396 (install_window_handler, remove_window_handler): Replace WindowPtr
23397 with WindowRef in externs.
23398
23399 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
23400
23401 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
23402
23403 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
23404
23405 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
23406
23407 * frame.c (Fmouse_position, Fmouse_pixel_position):
23408 Condition on HAVE_GPM too.
23409
23410 * term.c (term_mouse_highlight): Remove unused variables.
23411 (Fterm_open_connection): Set gpm_zerobased to 1.
23412 (term_mouse_movement, term_mouse_click, handle_one_term_event):
23413 Use zero based co-ordinates.
23414 (handle_one_term_event): Report a drag as mouse movement too.
23415
23416 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
23417
23418 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
23419
23420 * image.c (search_image_cache): New function. Require background
23421 color match if background color is unspecified in the image spec.
23422 (uncache_image, lookup_image): Use it.
23423
23424 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
23425
23426 * window.c (Fshrink_window): Reflow docstring.
23427
23428 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
23429
23430 * Version 22.1 released.
23431
23432 2007-06-01 Richard Stallman <rms@gnu.org>
23433
23434 * xfns.c (x_encode_text): Add GCPRO.
23435
23436 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23437
23438 * xfns.c (x_set_name_internal): Save encoded name before
23439 x_encode_text in case string data is relocated.
23440
23441 2007-05-31 Richard Stallman <rms@gnu.org>
23442
23443 * buffer.c (syms_of_buffer): Doc fix.
23444
23445 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
23446
23447 * sysdep.c (init_sys_modes): Add rather than replace with
23448 O_NONBLOCK.
23449
23450 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
23451 term_mouse_moveto.
23452
23453 * termhooks.h (term_mouse_moveto): New extern.
23454
23455 * term.c (mouse_face_window): Rename...
23456 (Qmouse_face_window): ...to this.
23457 (term_show_mouse_face, term_clear_mouse_face)
23458 (term_mouse_highlight): Use Qmouse_face_window.
23459 (term_mouse_moveto): New function.
23460 (term_mouse_position): Make it work.
23461 (syms_of_term): Uncomment assignment to mouse_position_hook.
23462 Staticpro Qmouse_face_window.
23463
23464 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23465
23466 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
23467 around current_column call.
23468
23469 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
23470
23471 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
23472 * xdisp.c (next_element_from_buffer):
23473 * window.c (delete_window):
23474 * term.c (term_mouse_highlight):
23475 * msdos.c (getdefdir):
23476 * macterm.c (mac_create_bitmap_from_bitmap_data)
23477 (init_font_name_table):
23478 * fns.c (Fsxhash):
23479 * data.c (Fmake_local_variable):
23480 * ccl.c (ccl_driver): Likewise.
23481
23482 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23483
23484 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
23485 Call mac_wakeup_from_rne on window size change.
23486
23487 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
23488
23489 * image.c (uncache_image): Fix typo.
23490
23491 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
23492
23493 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
23494
23495 2007-05-22 Richard Stallman <rms@gnu.org>
23496
23497 * xterm.c (x_connection_closed): Remove NO_RETURN.
23498
23499 2007-05-22 Martin Rudalics <rudalics@gmx.at>
23500
23501 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
23502
23503 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
23504
23505 * image.c (uncache_image): New function.
23506 (Fimage_refresh): New function.
23507
23508 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
23509
23510 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
23511
23512 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
23513
23514 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
23515 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
23516
23517 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
23518
23519 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
23520 conditional on [HAVE_GPM_H].
23521
23522 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
23523
23524 * syntax.c (skip_chars): Update syntax-table only after we checked that
23525 the new location is valid.
23526
23527 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23528
23529 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
23530 mac_get_window_bounds.
23531
23532 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
23533
23534 * Makefile.in (LIBGPM): Allow it to be set from configure.
23535 If set then link Emacs with it.
23536
23537 * config.in: Regenerate.
23538
23539 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
23540 New externs.
23541
23542 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
23543 Include gpm.h.
23544 (handle_one_term_event, term_gpm): New externs.
23545
23546 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
23547 and allow it to be interrupted by SIGIO.
23548
23549 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
23550 (wait_reading_process_output): Wait on gpm_fd too.
23551 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
23552 (add_gpm_wait_descriptor_called_flag): New variable.
23553 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
23554
23555 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
23556 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
23557 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
23558 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
23559 (make_lispy_event): Add case GPM_CLICK_EVENT.
23560 (read_avail_input): Handle mouse input.
23561
23562 * term.c (write_glyphs_with_face): New function.
23563 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
23564 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
23565 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
23566 (mouse_face_face_id, term_gpm, pos_x, pos_y)
23567 (last_mouse_x, last_mouse_y): New variables.
23568 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
23569 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
23570 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
23571 (Fterm_close_connection): New functions.
23572 (term_init): Initialise mouse_face_window.
23573
23574 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
23575
23576 * xdisp.c (redisplay_window): If first window line is a
23577 continuation line, recompute the new window start instead of
23578 recentering.
23579
23580 2007-05-18 Glenn Morris <rgm@gnu.org>
23581
23582 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
23583 Suggested by Alfred M. Szmidt <ams@gnu.org>.
23584
23585 2007-05-17 Glenn Morris <rgm@gnu.org>
23586
23587 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
23588
23589 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23590
23591 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
23592 dead key repeat and up events.
23593
23594 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
23595
23596 * image.c (pbm_load): Check image size for monochrome pbm.
23597
23598 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
23599
23600 * xterm.c (XTread_socket): Revert last change.
23601
23602 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
23603
23604 * image.c (pbm_load): Correctly check image size for greyscale pbm.
23605
23606 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
23607
23608 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
23609
23610 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
23611 mixup (YAILOM).
23612
23613 2007-05-07 Andreas Schwab <schwab@suse.de>
23614
23615 * keymap.c (Flookup_key): Fix typo in last change.
23616
23617 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
23618
23619 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
23620 mapping for unibyte strings.
23621
23622 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23623
23624 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
23625 (Fx_popup_dialog) [MAC_OSX]: Likewise.
23626
23627 2007-04-29 Richard Stallman <rms@gnu.org>
23628
23629 * insdel.c (replace_range): For undo, record insertion first.
23630
23631 2007-04-29 Andreas Schwab <schwab@suse.de>
23632
23633 * lisp.h (VECSIZE): Use OFFSETOF.
23634
23635 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23636
23637 * xdisp.c (try_window_reusing_current_matrix): Fix number of
23638 disabled lines.
23639
23640 2007-04-28 Richard Stallman <rms@gnu.org>
23641
23642 * lread.c (read_escape): In a string, \s is always space.
23643
23644 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
23645
23646 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
23647
23648 * gtkutil.c (xg_update_menubar, create_menus): Create empty
23649 submenu for menu bar items.
23650
23651 See ChangeLog.10 for earlier changes.
23652
23653 ;; Local Variables:
23654 ;; coding: utf-8
23655 ;; add-log-time-zone-rule: t
23656 ;; End:
23657
23658 Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
23659
23660 This file is part of GNU Emacs.
23661
23662 GNU Emacs is free software: you can redistribute it and/or modify
23663 it under the terms of the GNU General Public License as published by
23664 the Free Software Foundation, either version 3 of the License, or
23665 (at your option) any later version.
23666
23667 GNU Emacs is distributed in the hope that it will be useful,
23668 but WITHOUT ANY WARRANTY; without even the implied warranty of
23669 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23670 GNU General Public License for more details.
23671
23672 You should have received a copy of the GNU General Public License
23673 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23674
23675 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40