aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChong Yidong2007-06-15 00:02:03 +0000
committerChong Yidong2007-06-15 00:02:03 +0000
commit9657d668eef209b408602f67c0363e160f8cad3c (patch)
treea4b04fc32144f1de17c87d132476bed4d4070aba /src
parent8b29cab910dd3cea7e064bb70887e7b132640c9b (diff)
downloademacs-9657d668eef209b408602f67c0363e160f8cad3c.tar.gz
emacs-9657d668eef209b408602f67c0363e160f8cad3c.zip
(update_compositions): Fix last fix.
Diffstat (limited to 'src')
-rw-r--r--src/composite.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/composite.c b/src/composite.c
index 4e6c08a65cc..b0a5ebbc3ee 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -512,7 +512,7 @@ update_compositions (from, to, check_mask)
512 } 512 }
513 else if (from < ZV 513 else if (from < ZV
514 && find_composition (from, -1, &start, &from, &prop, Qnil) 514 && find_composition (from, -1, &start, &from, &prop, Qnil)
515 && COMPOSITION_VALID_P (start, end, prop)) 515 && COMPOSITION_VALID_P (start, from, prop))
516 run_composition_function (start, from, prop); 516 run_composition_function (start, from, prop);
517 } 517 }
518 518
@@ -523,7 +523,7 @@ update_compositions (from, to, check_mask)
523 (to - 1). */ 523 (to - 1). */
524 while (from < to - 1 524 while (from < to - 1
525 && find_composition (from, to, &start, &from, &prop, Qnil) 525 && find_composition (from, to, &start, &from, &prop, Qnil)
526 && COMPOSITION_VALID_P (start, end, prop) 526 && COMPOSITION_VALID_P (start, from, prop)
527 && from < to - 1) 527 && from < to - 1)
528 run_composition_function (start, from, prop); 528 run_composition_function (start, from, prop);
529 } 529 }