diff options
| author | Richard M. Stallman | 1998-04-23 04:03:31 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-04-23 04:03:31 +0000 |
| commit | a6ee6aa41bb1ca140fdbc91c7d72c783bdc9f312 (patch) | |
| tree | f17d8bfe93abc37865c8d22a026046fe45bd4959 | |
| parent | 340b8d58ac8428f9039fa9f272c7ba15fd1d9efd (diff) | |
| download | emacs-a6ee6aa41bb1ca140fdbc91c7d72c783bdc9f312.tar.gz emacs-a6ee6aa41bb1ca140fdbc91c7d72c783bdc9f312.zip | |
(Fstring_make_multibyte): Doc fix.
(Fstring_make_unibyte): Doc fix.
| -rw-r--r-- | src/fns.c | 8 |
1 files changed, 6 insertions, 2 deletions
| @@ -940,7 +940,9 @@ string_make_unibyte (string) | |||
| 940 | 940 | ||
| 941 | DEFUN ("string-make-multibyte", Fstring_make_multibyte, Sstring_make_multibyte, | 941 | DEFUN ("string-make-multibyte", Fstring_make_multibyte, Sstring_make_multibyte, |
| 942 | 1, 1, 0, | 942 | 1, 1, 0, |
| 943 | "Return the multibyte equivalent of STRING.") | 943 | "Return the multibyte equivalent of STRING.\n\ |
| 944 | The function `unibyte-char-to-multibyte' is used to convert\n\ | ||
| 945 | each unibyte character to a multibyte character.") | ||
| 944 | (string) | 946 | (string) |
| 945 | Lisp_Object string; | 947 | Lisp_Object string; |
| 946 | { | 948 | { |
| @@ -949,7 +951,9 @@ DEFUN ("string-make-multibyte", Fstring_make_multibyte, Sstring_make_multibyte, | |||
| 949 | 951 | ||
| 950 | DEFUN ("string-make-unibyte", Fstring_make_unibyte, Sstring_make_unibyte, | 952 | DEFUN ("string-make-unibyte", Fstring_make_unibyte, Sstring_make_unibyte, |
| 951 | 1, 1, 0, | 953 | 1, 1, 0, |
| 952 | "Return the unibyte equivalent of STRING.") | 954 | "Return the unibyte equivalent of STRING.\n\ |
| 955 | Multibyte character codes are converted to unibyte\n\ | ||
| 956 | by using just the low 8 bits.") | ||
| 953 | (string) | 957 | (string) |
| 954 | Lisp_Object string; | 958 | Lisp_Object string; |
| 955 | { | 959 | { |