changeset 49512:6a0305153436

(decompose-composite-char): Fix docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 29 Jan 2003 08:54:20 +0000
parents 61a52b4bd10d
children f5454a11fe12
files lisp/composite.el
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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))))