diff options
| author | Chong Yidong | 2011-07-21 14:38:21 -0400 |
|---|---|---|
| committer | Chong Yidong | 2011-07-21 14:38:21 -0400 |
| commit | da4adb048de353aebca7ec75548a7f94554f5073 (patch) | |
| tree | bf6b2728a8d4660c27a9fdb139da0f1968762f1c /src/editfns.c | |
| parent | 938b94c8851f7a70b7e67fbca7f7aa47440ec472 (diff) | |
| download | emacs-da4adb048de353aebca7ec75548a7f94554f5073.tar.gz emacs-da4adb048de353aebca7ec75548a7f94554f5073.zip | |
Doc fix for string-to-char (Bug#6576).
* editfns.c (Fstring_to_char): No need to explain what a character
is in the docstring.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 7 |
1 files changed, 1 insertions, 6 deletions
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 | ||
| 196 | DEFUN ("string-to-char", Fstring_to_char, Sstring_to_char, 1, 1, 0, | 196 | DEFUN ("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. */) |
| 198 | A multibyte character is handled correctly. | ||
| 199 | The value returned is a Unicode codepoint if it is below #x110000 (in | ||
| 200 | hex). Codepoints beyond that are Emacs extensions of Unicode. In | ||
| 201 | particular, eight-bit characters are returned as codepoints in the | ||
| 202 | range #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; |