# HG changeset patch # User Juanma Barranquero # Date 1043830460 0 # Node ID 6a03051534361ae7acc74c4e7437444ca7cc07ad # Parent 61a52b4bd10d484fede0ee282bdfa15e61058525 (decompose-composite-char): Fix docstring. diff -r 61a52b4bd10d -r 6a0305153436 lisp/composite.el --- a/lisp/composite.el Wed Jan 29 07:38:42 2003 +0000 +++ b/lisp/composite.el Wed Jan 29 08:54:20 2003 +0000 @@ -375,8 +375,9 @@ "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))))