]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fix for string-to-char (Bug#6576).
authorChong Yidong <cyd@stupidchicken.com>
Thu, 21 Jul 2011 18:38:21 +0000 (14:38 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 21 Jul 2011 18:38:21 +0000 (14:38 -0400)
* editfns.c (Fstring_to_char): No need to explain what a character
is in the docstring.

src/ChangeLog
src/editfns.c

index 1f0ebae264533a78a5094fb454bb42ddbb0805db..23ece8dfed5e208c7b506b0490a7e8c7beff4c15 100644 (file)
@@ -1,3 +1,8 @@
+2011-07-21  Chong Yidong  <cyd@stupidchicken.com>
+
+       * editfns.c (Fstring_to_char): No need to explain what a character
+       is in the docstring (Bug#6576).
+
 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * xml.c (parse_region): Make sure we always return a tree.
index b20c38faacd7f73c9d2abc2101b416cf4b1c83e7..56ad99d199f70ceaa756ec4f2b54abc0e3a2baa9 100644 (file)
@@ -194,12 +194,7 @@ DEFUN ("byte-to-string", Fbyte_to_string, Sbyte_to_string, 1, 1, 0,
 }
 
 DEFUN ("string-to-char", Fstring_to_char, Sstring_to_char, 1, 1, 0,
-       doc: /* Return the first character in STRING.
-A multibyte character is handled correctly.
-The value returned is a Unicode codepoint if it is below #x110000 (in
-hex).  Codepoints beyond that are Emacs extensions of Unicode.  In
-particular, eight-bit characters are returned as codepoints in the
-range #x3FFF80 through #x3FFFFF, inclusive.  */)
+       doc: /* Return the first character in STRING.  */)
   (register Lisp_Object string)
 {
   register Lisp_Object val;