summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/composite.el5
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7f96be92d43..55063e3503c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,4 +1,8 @@
-2003-01-29 Taro Kawagishi <tarok@transpulse.org>
+2003-01-29 Juanma Barranquero <lektu@terra.es>
+
+ * composite.el (decompose-composite-char): Fix docstring.
+
+2003-01-29 Taro Kawagishi <tarok@transpulse.org>
* arc-mode.el (archive-lzh-summarize): Fix previous change.
diff --git a/lisp/composite.el b/lisp/composite.el
index 4307bfe5d65..49fe76de5ed 100644
--- a/lisp/composite.el
+++ b/lisp/composite.el
@@ -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))))