# HG changeset patch # User Juanma Barranquero # Date 1026972934 0 # Node ID d41a7efb91c913e14db0e6c7159128d55a6adc57 # Parent 8e08ec435afda45fbe492c275e913c49077e659c (decompose-composite-char): Add autoload cookie to obsolescence declaration; also remove redundant info. diff -r 8e08ec435afd -r d41a7efb91c9 lisp/composite.el --- a/lisp/composite.el Thu Jul 18 06:14:35 2002 +0000 +++ b/lisp/composite.el Thu Jul 18 06:15:34 2002 +0000 @@ -369,7 +369,6 @@ ;;;###autoload (defun decompose-composite-char (char &optional type with-composition-rule) "Convert CHAR to string. -This is only for backward compatibility with Emacs 20.4 and earlier. 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 @@ -378,6 +377,7 @@ ((eq type 'list) (list char)) (t (vector char)))) +;;;###autoload (make-obsolete 'decompose-composite-char 'char-to-string "21.1")