diff options
| author | Juanma Barranquero | 2005-07-20 13:03:40 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-07-20 13:03:40 +0000 |
| commit | 2624e2ac351133efe7246b5061e4b1eeaf64a901 (patch) | |
| tree | d1cb8a7ad6f27a529851f0fa6d8ba7ca2b1dbecc /lisp | |
| parent | bfa13d1914a818cce9e6cfa8290040a08d030874 (diff) | |
| download | emacs-2624e2ac351133efe7246b5061e4b1eeaf64a901.tar.gz emacs-2624e2ac351133efe7246b5061e4b1eeaf64a901.zip | |
(compose-string, encode-composition-rule, compose-last-chars):
Fix typos in docstrings.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/composite.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/composite.el b/lisp/composite.el index 5fd6b6529e0..452a9cebca9 100644 --- a/lisp/composite.el +++ b/lisp/composite.el | |||
| @@ -82,7 +82,7 @@ follows (the point `*' corresponds to both reference points): | |||
| 82 | (defun encode-composition-rule (rule) | 82 | (defun encode-composition-rule (rule) |
| 83 | "Encode composition rule RULE into an integer value. | 83 | "Encode composition rule RULE into an integer value. |
| 84 | RULE is a cons of global and new reference point symbols | 84 | RULE is a cons of global and new reference point symbols |
| 85 | \(see reference-point-alist)." | 85 | \(see `reference-point-alist')." |
| 86 | 86 | ||
| 87 | ;; This must be compatible with C macro COMPOSITION_ENCODE_RULE | 87 | ;; This must be compatible with C macro COMPOSITION_ENCODE_RULE |
| 88 | ;; defined in composite.h. | 88 | ;; defined in composite.h. |
| @@ -219,7 +219,7 @@ The return value is STRING where `composition' property is put on all | |||
| 219 | the characters in it. | 219 | the characters in it. |
| 220 | 220 | ||
| 221 | Optional 2nd and 3rd arguments START and END specify the range of | 221 | Optional 2nd and 3rd arguments START and END specify the range of |
| 222 | STRING to be composed. They defaults to the beginning and the end of | 222 | STRING to be composed. They default to the beginning and the end of |
| 223 | STRING respectively. | 223 | STRING respectively. |
| 224 | 224 | ||
| 225 | Optional 4th argument COMPONENTS, if non-nil, is a character or a | 225 | Optional 4th argument COMPONENTS, if non-nil, is a character or a |
| @@ -355,11 +355,11 @@ The argument is a parameterized event of the form | |||
| 355 | where N is the number of characters before point to compose, | 355 | where N is the number of characters before point to compose, |
| 356 | COMPONENTS, if non-nil, is the same as the argument to `compose-region' | 356 | COMPONENTS, if non-nil, is the same as the argument to `compose-region' |
| 357 | \(which see). If it is nil, `compose-chars-after' is called, | 357 | \(which see). If it is nil, `compose-chars-after' is called, |
| 358 | and that function find a proper rule to compose the target characters. | 358 | and that function finds a proper rule to compose the target characters. |
| 359 | This function is intended to be used from input methods. | 359 | This function is intended to be used from input methods. |
| 360 | The global keymap binds special event `compose-last-chars' to this | 360 | The global keymap binds special event `compose-last-chars' to this |
| 361 | function. Input method may generate an event (compose-last-chars N COMPONENTS) | 361 | function. Input method may generate an event (compose-last-chars N COMPONENTS) |
| 362 | after a sequence character events." | 362 | after a sequence of character events." |
| 363 | (interactive "e") | 363 | (interactive "e") |
| 364 | (let ((chars (nth 1 args))) | 364 | (let ((chars (nth 1 args))) |
| 365 | (if (and (numberp chars) | 365 | (if (and (numberp chars) |