diff options
| author | Juanma Barranquero | 2002-06-27 14:49:22 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-06-27 14:49:22 +0000 |
| commit | 9d5d96a6bdeecccf6503573bd3e03173a523c425 (patch) | |
| tree | 382f648dd41ebf4be7136587c782881cfc10d495 | |
| parent | d76132d04151365d27595041555142f4ce420492 (diff) | |
| download | emacs-9d5d96a6bdeecccf6503573bd3e03173a523c425.tar.gz emacs-9d5d96a6bdeecccf6503573bd3e03173a523c425.zip | |
(decompose-composite-char): Fix docstring.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/composite.el | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c56ad372d73..5885cdd5321 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2002-06-27 Juanma Barranquero <lektu@terra.es> | 1 | 2002-06-27 Juanma Barranquero <lektu@terra.es> |
| 2 | 2 | ||
| 3 | * composite.el (decompose-composite-char): Fix docstring. | ||
| 4 | |||
| 3 | * faces.el (describe-face): Capitalize "not documented" message. | 5 | * faces.el (describe-face): Capitalize "not documented" message. |
| 4 | 6 | ||
| 5 | * help-fns.el (describe-variable): Likewise. | 7 | * help-fns.el (describe-variable): Likewise. |
diff --git a/lisp/composite.el b/lisp/composite.el index 610ec227a60..c1174d3316f 100644 --- a/lisp/composite.el +++ b/lisp/composite.el | |||
| @@ -364,12 +364,12 @@ after a sequence character events." | |||
| 364 | 364 | ||
| 365 | 365 | ||
| 366 | ;;; The following codes are only for backward compatibility with Emacs | 366 | ;;; The following codes are only for backward compatibility with Emacs |
| 367 | ;;; 20.4 and the earlier. | 367 | ;;; 20.4 and earlier. |
| 368 | 368 | ||
| 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 the earlier. | 372 | This is only for backward compatibility with Emacs 20.4 and earlier. |
| 373 | 373 | ||
| 374 | If optional 2nd arg TYPE is non-nil, it is `string', `list', or | 374 | 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 | 375 | `vector'. In this case, CHAR is converted string, list of CHAR, or |