comparison src/ChangeLog @ 90609:bb0e318b7c53

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 447-459) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 141-144) - Merge from emacs--devo--0 - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-115
author Miles Bader <miles@gnu.org>
date Tue, 03 Oct 2006 05:04:21 +0000
parents b5c13d1564a9 f16075a82800
children 8dd8c8286063
comparison
equal deleted inserted replaced
90608:1bc627bac080 90609:bb0e318b7c53
1 2006-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * xdisp.c (handle_fontified_prop): Don't fontify at EOB.
4
5 2006-09-30 Eli Zaretskii <eliz@gnu.org>
6
7 * config.in Regenerated.
8
9 2006-09-29 Juri Linkov <juri@jurta.org>
10
11 * buffer.c (syms_of_buffer): Reorder coding systems in the
12 docstring of %z to the real order displayed in the modeline.
13
14 2006-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
15
16 * keymap.c (Fdefine_key): Yet another int/Lisp_Object mixup (YAILOM).
17
18 2006-09-26 Chong Yidong <cyd@stupidchicken.com>
19
20 * indent.c (Fvertical_motion): Do move back if the Lisp string
21 being displayed contains newlines.
22
23 2006-09-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24
25 * macterm.c (mac_compute_glyph_string_overhangs, XLoadQueryFont)
26 [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw before QDTextBounds.
27
28 2006-09-26 Kenichi Handa <handa@m17n.org>
29
30 * keymap.c (Fsingle_key_description): For an invalid char, return
31 "Invalid char code NNNNN".
32
33 2006-09-25 Chong Yidong <cyd@stupidchicken.com>
34
35 * callint.c (Fcall_interactively): Doc fix.
36
37 2006-09-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
38
39 * macterm.c (x_underline_at_descent_line): New variable.
40 (syms_of_macterm): DEFVAR_BOOL it.
41 (x_draw_glyph_string): Use it.
42 (XLoadQueryFont): Calculate min_bounds.descent and max_bounds.descent.
43
44 2006-09-25 Kenichi Handa <handa@m17n.org>
45
46 * keymap.c (Fsingle_key_description): Return unique names for
47 generic characters.
48
49 2006-09-24 Richard Stallman <rms@gnu.org>
50
51 * search.c (compile_pattern_1): Don't BLOCK_INPUT.
52
53 2006-09-24 Eli Zaretskii <eliz@gnu.org>
54
55 * makefile.w32-in ($(BLD)/fns.$(O), $(BLD)/w32proc.$(O)): Depend
56 on nt/inc/langinfo.h and nt/inc/nl_types.h.
57
58 * w32proc.c (nl_langinfo): New function.
59
60 * w32fns.c (w32-pass-alt-to-system, w32-alt-is-meta)
61 (w32-pass-lwindow-to-system, w32-enable-num-lock)
62 (w32-enable-caps-lock, w32-scroll-lock-modifier)
63 (w32-lwindow-modifier, w32-rwindow-modifier)
64 (w32-apps-modifier, w32-mouse-button-tolerance): Doc fix.
65
66 2006-09-23 Juanma Barranquero <lekktu@gmail.com>
67
68 * minibuf.c (Finternal_complete_buffer, Fread_minibuffer)
69 (Fdisplay_completion_list): Fix typos in docstrings.
70
71 2006-09-23 Romain Francoise <romain@orebokech.com>
72
73 * s/gnu-linux.h (MAIL_USE_FLOCK): Check for HAVE_LIBLOCKFILE too.
74
75 2006-09-23 Kenichi Handa <handa@m17n.org>
76
77 * keymap.c (Fmap_keymap): Docstring mentions about generic character.
78
79 2006-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
80
81 * regex.c (analyse_first): For eight-bit-control chars, mark both the
82 char's value and its leading byte in the fastmap.
83 (re_search_2): When fast-scanning without translation, be careful to
84 check that we only match the leading byte of a multibyte char.
85
86 * charset.h (PREV_CHAR_BOUNDARY): Make it work from within a char's
87 byte sequence.
88 (AT_CHAR_BOUNDARY): New macro.
89
90 2006-09-22 Kenichi Handa <handa@m17n.org>
91
92 * fns.c (optimize_sub_char_table): Don't optimize a sub-char-table
93 whose default value is non-nil.
94
95 2006-09-22 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
96
97 * gtkutil.c (xg_get_file_with_chooser): Only show C-l help for
98 Gtk+ versions < 2.10.
99
100 * xfns.c (syms_of_xfns): Fix typo in help text for
101 x-gtk-file-dialog-help-text.
102
103 2006-09-21 Kim F. Storm <storm@cua.dk>
104
105 * fns.c (Fmemq): Refill doc string.
106 (Fmemql): New defun, like memq but using eql.
107 (syms_of_fns): Defsubr it.
108
109 2006-09-20 Kim F. Storm <storm@cua.dk>
110
111 * xdisp.c (pos_visible_p): CHARPOS < 0 means return info for
112 last visible glyph in window.
113
114 * window.c (Fset_window_hscroll, Fwindow_line_height):
115 Doc fix. Use "off-window" instead of "off-screen".
116 (Fpos_visible_in_window_p): Likewise.
117 If POS is t, return info for last visible glyph in window.
118
1 2006-09-19 Chong Yidong <cyd@stupidchicken.com> 119 2006-09-19 Chong Yidong <cyd@stupidchicken.com>
2 120
3 * search.c (struct regexp_cache): New entry syntax_table. 121 * search.c (struct regexp_cache): New entry syntax_table.
4 (compile_pattern_1): Set it. 122 (compile_pattern_1): Set it.
5 (syms_of_search): Initialize it. 123 (syms_of_search): Initialize it.
240 * editfns.c (Fsystem_name): Mention "host" in the doc string. 358 * editfns.c (Fsystem_name): Mention "host" in the doc string.
241 (syms_of_editfns) <system-name>: Likewise. 359 (syms_of_editfns) <system-name>: Likewise.
242 360
243 2006-08-27 Martin Rudalics <rudalics@gmx.at> 361 2006-08-27 Martin Rudalics <rudalics@gmx.at>
244 362
245 * xdisp.c (mouse_autoselect_window): Removed. 363 * xdisp.c (mouse_autoselect_window): Remove.
246 (Vmouse_autoselect_window): New variable. DEFVAR_LISP it. 364 (Vmouse_autoselect_window): New variable. DEFVAR_LISP it.
247 365
248 * dispextern.h (mouse_autoselect_window): Remove extern. 366 * dispextern.h (mouse_autoselect_window): Remove extern.
249 (Vmouse_autoselect_window): Add extern. 367 (Vmouse_autoselect_window): Add extern.
250 368