diff options
| author | Juanma Barranquero | 2009-03-25 11:58:43 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2009-03-25 11:58:43 +0000 |
| commit | 087e2ea9553da5bf4a707c656a224f69c9426035 (patch) | |
| tree | f19f45560fab29f31fdc921f7c390aefdf0e8921 /src | |
| parent | 329a643c50ede08c2d11ca33b6a374617f70d9b4 (diff) | |
| download | emacs-087e2ea9553da5bf4a707c656a224f69c9426035.tar.gz emacs-087e2ea9553da5bf4a707c656a224f69c9426035.zip | |
Fix typo in comment.
Diffstat (limited to 'src')
| -rw-r--r-- | src/composite.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/composite.c b/src/composite.c index 252618b2a01..cd84f3932b0 100644 --- a/src/composite.c +++ b/src/composite.c | |||
| @@ -694,7 +694,7 @@ composition_gstring_put_cache (gstring, len) | |||
| 694 | break; | 694 | break; |
| 695 | len = i; | 695 | len = i; |
| 696 | } | 696 | } |
| 697 | 697 | ||
| 698 | copy = Fmake_vector (make_number (len + 2), Qnil); | 698 | copy = Fmake_vector (make_number (len + 2), Qnil); |
| 699 | LGSTRING_SET_HEADER (copy, Fcopy_sequence (header)); | 699 | LGSTRING_SET_HEADER (copy, Fcopy_sequence (header)); |
| 700 | for (i = 0; i < len; i++) | 700 | for (i = 0; i < len; i++) |
| @@ -914,7 +914,7 @@ fill_gstring_body (gstring) | |||
| 914 | 914 | ||
| 915 | 915 | ||
| 916 | /* Try to compose the characters at CHARPOS according to CFT_ELEMENT | 916 | /* Try to compose the characters at CHARPOS according to CFT_ELEMENT |
| 917 | which is an element of composition-fucntion-table (which see). | 917 | which is an element of composition-function-table (which see). |
| 918 | LIMIT limits the characters to compose. STRING, if not nil, is a | 918 | LIMIT limits the characters to compose. STRING, if not nil, is a |
| 919 | target string. WIN is a window where the characters are being | 919 | target string. WIN is a window where the characters are being |
| 920 | displayed. */ | 920 | displayed. */ |
| @@ -932,7 +932,7 @@ autocmp_chars (cft_element, charpos, bytepos, limit, win, face, string) | |||
| 932 | Lisp_Object pos = make_number (charpos); | 932 | Lisp_Object pos = make_number (charpos); |
| 933 | EMACS_INT pt = PT, pt_byte = PT_BYTE; | 933 | EMACS_INT pt = PT, pt_byte = PT_BYTE; |
| 934 | int lookback; | 934 | int lookback; |
| 935 | 935 | ||
| 936 | record_unwind_save_match_data (); | 936 | record_unwind_save_match_data (); |
| 937 | for (lookback = -1; CONSP (cft_element); cft_element = XCDR (cft_element)) | 937 | for (lookback = -1; CONSP (cft_element); cft_element = XCDR (cft_element)) |
| 938 | { | 938 | { |
| @@ -1376,7 +1376,7 @@ find_automatic_composition (pos, limit, start, end, gstring, string) | |||
| 1376 | } | 1376 | } |
| 1377 | prev = cur; | 1377 | prev = cur; |
| 1378 | /* Now search forward. */ | 1378 | /* Now search forward. */ |
| 1379 | search_forward: | 1379 | search_forward: |
| 1380 | *gstring = Qnil; | 1380 | *gstring = Qnil; |
| 1381 | if (! NILP (check_val) || limit >= orig.pos) | 1381 | if (! NILP (check_val) || limit >= orig.pos) |
| 1382 | { | 1382 | { |