]> git.eshelyaron.com Git - emacs.git/commitdiff
(decompose-composite-char): Add autoload cookie to obsolescence declaration;
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 18 Jul 2002 06:15:59 +0000 (06:15 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 18 Jul 2002 06:15:59 +0000 (06:15 +0000)
also remove redundant info.

lisp/ChangeLog
lisp/composite.el

index 15acd5f85370855bbd521738c614ad496a4fe508..50f31ed41d0734a292f60202851ea17a67a752d1 100644 (file)
@@ -1,3 +1,13 @@
+2002-07-18  Juanma Barranquero  <lektu@terra.es>
+
+       * international/mule-util.el (string-to-sequence, truncate-string): Add
+       autoload cookie to obsolescence declaration.
+
+       * rect.el (move-to-column-force): Likewise.
+
+       * composite.el (decompose-composite-char): Likewise; also remove
+       redundant info.
+
 2002-07-18  Kim F. Storm  <storm@cua.dk>
 
        * loadup.el: Load international/utf-8 before international/characters.
@@ -73,6 +83,7 @@
        * international/utf-8-subst.el: Populate utf-8-subst-rev-table.
        (utf-8-subst-table): Don't set.
 
+>>>>>>> 1.4125
 2002-07-17  Kenichi Handa  <handa@etl.go.jp>
 
        * international/mule.el (define-coding-system-alias):
index c1174d3316fb833eb4f6fd1b7ae9195b3abda9ca..abbcd391e3d7abbceb9c43754b0c9c4e5dae9c08 100644 (file)
@@ -369,7 +369,6 @@ after a sequence character events."
 ;;;###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 @@ vector of CHAR respectively."
        ((eq type 'list) (list char))
        (t (vector char))))
 
+;;;###autoload
 (make-obsolete 'decompose-composite-char 'char-to-string "21.1")
 
 \f