]> git.eshelyaron.com Git - emacs.git/commitdiff
(decompose-composite-char): Fix docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 29 Jan 2003 08:56:40 +0000 (08:56 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 29 Jan 2003 08:56:40 +0000 (08:56 +0000)
lisp/ChangeLog
lisp/composite.el

index 7f96be92d4301d70448eb408fef94036e5425bf5..55063e3503c34ac093720e4742b4653c14a5d3ae 100644 (file)
@@ -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.
 
index 4307bfe5d652896313f1abcb73a4a0704eaa378d..49fe76de5ed2c2c152ea60f85aae756acb278892 100644 (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))))