aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorKenichi Handa2010-09-16 11:11:13 +0900
committerKenichi Handa2010-09-16 11:11:13 +0900
commit38d50547c2a8195bed0aaeafbbc4c0f277d4e416 (patch)
tree388416c9f2cc4746d0d2d9e525a50a6c2f00f3d4 /src/ChangeLog
parentfa3f60399014127e711f3f438004950cba0bddb9 (diff)
parent6139f995addcb8fce63deb30c7ed0e6f2b618b02 (diff)
downloademacs-38d50547c2a8195bed0aaeafbbc4c0f277d4e416.tar.gz
emacs-38d50547c2a8195bed0aaeafbbc4c0f277d4e416.zip
merge trunk
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog77
1 files changed, 70 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 5a248bacc03..d62215e4eef 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -3,6 +3,69 @@
3 * ftfont.c (ftfont_check_otf): Fix the case of checking just 3 * ftfont.c (ftfont_check_otf): Fix the case of checking just
4 existence of GSUB or GPOS. 4 existence of GSUB or GPOS.
5 5
62010-09-14 Juanma Barranquero <lekktu@gmail.com>
7
8 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
9
102010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11
12 * xml.c (parse_buffer): Renamed to parse_string(), since that's
13 what it does.
14 (parse_string): Return nil when the document can't be parsed.
15
162010-09-14 Jan Djärv <jan.h.d@swipnet.se>
17
18 * xterm.c (get_current_vm_state): New function.
19 (do_ewmh_fullscreen): Call get_current_vm_state and compare with
20 want_fullscreen so set_wm_state calls are few (Bug#7013).
21 (x_handle_net_wm_state): Move code to get_current_vm_state and
22 call that function.
23
242010-09-14 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
25
26 * term.c (tty_set_terminal_modes): Don't initialize twice (bug#7002).
27
282010-09-14 Kenichi Handa <handa@m17n.org>
29
30 * coding.c (encode_coding_iso_2022): Don't optimize for ASCII if
31 we may use designation or locking-shift.
32
332010-09-14 Kenichi Handa <handa@m17n.org>
34
35 * coding.c (detect_coding_emacs_mule): Fix checking of multibyte
36 sequence when the source is multibyte.
37
382010-09-14 Andreas Schwab <schwab@linux-m68k.org>
39
40 * xml.c (Fxml_parse_string, Fxml_parse_string): Revert last change.
41 Don't make first argument optional. Doc fix.
42
432010-09-14 Leo <sdl.web@gmail.com> (tiny change)
44
45 * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
46 parameters for the doc string.
47
482010-09-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
49
50 * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
51
522010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
53
54 * fns.c (Fy_or_n_p): Move to lisp/subr.el.
55 (syms_of_fns): Don't defsubr Sy_or_n_p.
56 * lisp.h: Don't declare Fy_or_n_p.
57 * fileio.c (barf_or_query_if_file_exists): Fy_or_n_p -> y-or-n-p.
58
592010-09-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
60
61 * xml.c (Fxml_parse_buffer): New function to parse XML files.
62
632010-09-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
64
65 * xml.c: New file.
66 (Fhtml_parse_buffer): New function to interface to the libxml2
67 html parsing function.
68
62010-09-05 Juanma Barranquero <lekktu@gmail.com> 692010-09-05 Juanma Barranquero <lekktu@gmail.com>
7 70
8 * biditype.h: Regenerate. 71 * biditype.h: Regenerate.
@@ -65,8 +128,8 @@
65 characters. 128 characters.
66 129
67 * term.c (encode_terminal_code): Fix the previous change. 130 * term.c (encode_terminal_code): Fix the previous change.
68 (produce_glyphs): Don't set it->char_to_display here. Don't 131 (produce_glyphs): Don't set it->char_to_display here.
69 handle unibyte-display-via-language-environment here. 132 Don't handle unibyte-display-via-language-environment here.
70 (produce_special_glyphs): Set temp_it.char_to_display before 133 (produce_special_glyphs): Set temp_it.char_to_display before
71 calling produce_glyphs. 134 calling produce_glyphs.
72 135
@@ -85,9 +148,9 @@
85 (produce_stretch_glyph): Set it2.char_to_display too before 148 (produce_stretch_glyph): Set it2.char_to_display too before
86 calling x_produce_glyphs. 149 calling x_produce_glyphs.
87 (x_produce_glyphs): Simplify by using the same code for ASCII and 150 (x_produce_glyphs): Simplify by using the same code for ASCII and
88 non-ASCII characters. Don't set it->char_to_display here. Don't 151 non-ASCII characters. Don't set it->char_to_display here.
89 handle unibyte-display-via-language-environment here. For a 152 Don't handle unibyte-display-via-language-environment here. For a
90 charater of no glyph, use font->space_width instead of FONT_WIDTH. 153 character of no glyph, use font->space_width instead of FONT_WIDTH.
91 154
922010-08-31 Stefan Monnier <monnier@iro.umontreal.ca> 1552010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
93 156
@@ -109,7 +172,7 @@
1092010-08-29 Kenichi Handa <handa@m17n.org> 1722010-08-29 Kenichi Handa <handa@m17n.org>
110 173
111 * term.c (encode_terminal_code): Encode byte chars to the 174 * term.c (encode_terminal_code): Encode byte chars to the
112 correspnding bytes. 175 corresponding bytes.
113 176
1142010-08-29 Jan Djärv <jan.h.d@swipnet.se> 1772010-08-29 Jan Djärv <jan.h.d@swipnet.se>
115 178
@@ -20249,7 +20312,7 @@
20249 20312
20250 * search.c (search_buffer): Give up BM search on case-fold-search 20313 * search.c (search_buffer): Give up BM search on case-fold-search
20251 if one of a target character has a case-equivalence of different 20314 if one of a target character has a case-equivalence of different
20252 byte length even if that target charcter is an ASCII. 20315 byte length even if that target character is an ASCII.
20253 (simple_search): Fix calculation of byte length of matched text. 20316 (simple_search): Fix calculation of byte length of matched text.
20254 (boyer_moore): Fix handling of case-equivalent multibyte characters. 20317 (boyer_moore): Fix handling of case-equivalent multibyte characters.
20255 20318