aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/editfns.c7
2 files changed, 6 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1f0ebae2645..23ece8dfed5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12011-07-21 Chong Yidong <cyd@stupidchicken.com>
2
3 * editfns.c (Fstring_to_char): No need to explain what a character
4 is in the docstring (Bug#6576).
5
12011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org> 62011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 7
3 * xml.c (parse_region): Make sure we always return a tree. 8 * xml.c (parse_region): Make sure we always return a tree.
diff --git a/src/editfns.c b/src/editfns.c
index b20c38faacd..56ad99d199f 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -194,12 +194,7 @@ DEFUN ("byte-to-string", Fbyte_to_string, Sbyte_to_string, 1, 1, 0,
194} 194}
195 195
196DEFUN ("string-to-char", Fstring_to_char, Sstring_to_char, 1, 1, 0, 196DEFUN ("string-to-char", Fstring_to_char, Sstring_to_char, 1, 1, 0,
197 doc: /* Return the first character in STRING. 197 doc: /* Return the first character in STRING. */)
198A multibyte character is handled correctly.
199The value returned is a Unicode codepoint if it is below #x110000 (in
200hex). Codepoints beyond that are Emacs extensions of Unicode. In
201particular, eight-bit characters are returned as codepoints in the
202range #x3FFF80 through #x3FFFFF, inclusive. */)
203 (register Lisp_Object string) 198 (register Lisp_Object string)
204{ 199{
205 register Lisp_Object val; 200 register Lisp_Object val;