diff options
| author | Juanma Barranquero | 2002-07-18 06:15:59 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-07-18 06:15:59 +0000 |
| commit | 6fcfeabfa14298567aca10e1e4b84900ee776093 (patch) | |
| tree | 8798ad8523ab3a6298c4d6bbd7d1b8598e0c42ba | |
| parent | df2801ecdde2170fb38ccbc95c830fa9c5ff20db (diff) | |
| download | emacs-6fcfeabfa14298567aca10e1e4b84900ee776093.tar.gz emacs-6fcfeabfa14298567aca10e1e4b84900ee776093.zip | |
(decompose-composite-char): Add autoload cookie to obsolescence declaration;
also remove redundant info.
| -rw-r--r-- | lisp/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/composite.el | 2 |
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 @@ | |||
| 1 | 2002-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 | |||
| 1 | 2002-07-18 Kim F. Storm <storm@cua.dk> | 11 | 2002-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 | ||
| 76 | 2002-07-17 Kenichi Handa <handa@etl.go.jp> | 87 | 2002-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. |
| 372 | This is only for backward compatibility with Emacs 20.4 and earlier. | ||
| 373 | 372 | ||
| 374 | If optional 2nd arg TYPE is non-nil, it is `string', `list', or | 373 | If 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 | ||