diff options
| author | Eli Zaretskii | 2010-04-30 15:16:13 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2010-04-30 15:16:13 +0300 |
| commit | 4f27f7d26058c74a960819726e90ff8ec4c5e453 (patch) | |
| tree | 16c36831d7b4f74584e0b464a8659e4ae4830ad7 | |
| parent | 718a19c869d21865f460825fef3c7ccb3aed3123 (diff) | |
| download | emacs-4f27f7d26058c74a960819726e90ff8ec4c5e453.tar.gz emacs-4f27f7d26058c74a960819726e90ff8ec4c5e453.zip | |
Fix typos in doc strings of composite.el.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/composite.el | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 03a2376d3cd..ddc0fb8e239 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-04-30 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * composite.el (compose-region, reference-point-alist): Fix typos | ||
| 4 | in the doc strings. | ||
| 5 | |||
| 1 | 2010-04-29 Chong Yidong <cyd@stupidchicken.com> | 6 | 2010-04-29 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 7 | ||
| 3 | * ido.el (ido-init-completion-maps): Remove C-v binding. | 8 | * ido.el (ido-init-completion-maps): Remove C-v binding. |
diff --git a/lisp/composite.el b/lisp/composite.el index 15707fd700d..c5a41be23ec 100644 --- a/lisp/composite.el +++ b/lisp/composite.el | |||
| @@ -44,7 +44,7 @@ | |||
| 44 | A glyph reference point symbol is to be used to specify a composition | 44 | A glyph reference point symbol is to be used to specify a composition |
| 45 | rule in COMPONENTS argument to such functions as `compose-region'. | 45 | rule in COMPONENTS argument to such functions as `compose-region'. |
| 46 | 46 | ||
| 47 | Meanings of glyph reference point codes are as follows: | 47 | The meaning of glyph reference point codes is as follows: |
| 48 | 48 | ||
| 49 | 0----1----2 <---- ascent 0:tl or top-left | 49 | 0----1----2 <---- ascent 0:tl or top-left |
| 50 | | | 1:tc or top-center | 50 | | | 1:tc or top-center |
| @@ -212,7 +212,7 @@ If it is a string, the elements are alternate characters. In | |||
| 212 | this case, TAB element has a special meaning. If the first | 212 | this case, TAB element has a special meaning. If the first |
| 213 | characer is TAB, the glyphs are displayed with left padding space | 213 | characer is TAB, the glyphs are displayed with left padding space |
| 214 | so that no pixel overlaps with the previous column. If the last | 214 | so that no pixel overlaps with the previous column. If the last |
| 215 | character is TAB, the glyphs are displayed with rigth padding | 215 | character is TAB, the glyphs are displayed with right padding |
| 216 | space so that no pixel overlaps with the following column. | 216 | space so that no pixel overlaps with the following column. |
| 217 | 217 | ||
| 218 | If it is a vector or list, it is a sequence of alternate characters and | 218 | If it is a vector or list, it is a sequence of alternate characters and |
| @@ -222,7 +222,7 @@ elements with previously composed N glyphs. | |||
| 222 | 222 | ||
| 223 | A composition rule is a cons of global and new glyph reference point | 223 | A composition rule is a cons of global and new glyph reference point |
| 224 | symbols. See the documentation of `reference-point-alist' for more | 224 | symbols. See the documentation of `reference-point-alist' for more |
| 225 | detail. | 225 | details. |
| 226 | 226 | ||
| 227 | Optional 4th argument MODIFICATION-FUNC is a function to call to | 227 | Optional 4th argument MODIFICATION-FUNC is a function to call to |
| 228 | adjust the composition when it gets invalid because of a change of | 228 | adjust the composition when it gets invalid because of a change of |