aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2002-07-18 06:15:59 +0000
committerJuanma Barranquero2002-07-18 06:15:59 +0000
commit6fcfeabfa14298567aca10e1e4b84900ee776093 (patch)
tree8798ad8523ab3a6298c4d6bbd7d1b8598e0c42ba
parentdf2801ecdde2170fb38ccbc95c830fa9c5ff20db (diff)
downloademacs-6fcfeabfa14298567aca10e1e4b84900ee776093.tar.gz
emacs-6fcfeabfa14298567aca10e1e4b84900ee776093.zip
(decompose-composite-char): Add autoload cookie to obsolescence declaration;
also remove redundant info.
-rw-r--r--lisp/ChangeLog11
-rw-r--r--lisp/composite.el2
2 files changed, 12 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 15acd5f8537..50f31ed41d0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,13 @@
12002-07-18 Juanma Barranquero <lektu@terra.es>
2
3 * international/mule-util.el (string-to-sequence, truncate-string): Add
4 autoload cookie to obsolescence declaration.
5
6 * rect.el (move-to-column-force): Likewise.
7
8 * composite.el (decompose-composite-char): Likewise; also remove
9 redundant info.
10
12002-07-18 Kim F. Storm <storm@cua.dk> 112002-07-18 Kim F. Storm <storm@cua.dk>
2 12
3 * loadup.el: Load international/utf-8 before international/characters. 13 * loadup.el: Load international/utf-8 before international/characters.
@@ -73,6 +83,7 @@
73 * international/utf-8-subst.el: Populate utf-8-subst-rev-table. 83 * international/utf-8-subst.el: Populate utf-8-subst-rev-table.
74 (utf-8-subst-table): Don't set. 84 (utf-8-subst-table): Don't set.
75 85
86>>>>>>> 1.4125
762002-07-17 Kenichi Handa <handa@etl.go.jp> 872002-07-17 Kenichi Handa <handa@etl.go.jp>
77 88
78 * international/mule.el (define-coding-system-alias): 89 * international/mule.el (define-coding-system-alias):
diff --git a/lisp/composite.el b/lisp/composite.el
index c1174d3316f..abbcd391e3d 100644
--- a/lisp/composite.el
+++ b/lisp/composite.el
@@ -369,7 +369,6 @@ after a sequence character events."
369;;;###autoload 369;;;###autoload
370(defun decompose-composite-char (char &optional type with-composition-rule) 370(defun decompose-composite-char (char &optional type with-composition-rule)
371 "Convert CHAR to string. 371 "Convert CHAR to string.
372This is only for backward compatibility with Emacs 20.4 and earlier.
373 372
374If optional 2nd arg TYPE is non-nil, it is `string', `list', or 373If optional 2nd arg TYPE is non-nil, it is `string', `list', or
375`vector'. In this case, CHAR is converted string, list of CHAR, or 374`vector'. In this case, CHAR is converted string, list of CHAR, or
@@ -378,6 +377,7 @@ vector of CHAR respectively."
378 ((eq type 'list) (list char)) 377 ((eq type 'list) (list char))
379 (t (vector char)))) 378 (t (vector char))))
380 379
380;;;###autoload
381(make-obsolete 'decompose-composite-char 'char-to-string "21.1") 381(make-obsolete 'decompose-composite-char 'char-to-string "21.1")
382 382
383 383