1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(decompose-composite-char): Fix docstring.

This commit is contained in:
Juanma Barranquero 2003-01-29 08:56:40 +00:00
parent 50ca1c5579
commit 1ea6238909
2 changed files with 8 additions and 3 deletions

View file

@ -375,8 +375,9 @@ after a sequence character events."
"Convert CHAR to string.
If optional 2nd arg TYPE is non-nil, it is `string', `list', or
`vector'. In this case, CHAR is converted string, list of CHAR, or
vector of CHAR respectively."
`vector'. In this case, CHAR is converted to string, list of CHAR, or
vector of CHAR respectively.
Optional 3rd arg WITH-COMPOSITION-RULE is ignored."
(cond ((or (null type) (eq type 'string)) (char-to-string char))
((eq type 'list) (list char))
(t (vector char))))