]> git.eshelyaron.com Git - emacs.git/commitdiff
(update_compositions) <check_mask & CHECK_HEAD>: Fix
authorDave Love <fx@gnu.org>
Fri, 6 Apr 2001 10:21:25 +0000 (10:21 +0000)
committerDave Love <fx@gnu.org>
Fri, 6 Apr 2001 10:21:25 +0000 (10:21 +0000)
test of `from'.

src/composite.c

index 04836fb36d10a76cacf517f9586a6519c2245267..9ff5f855bed70b913761b344e3b137d295c32356 100644 (file)
@@ -509,7 +509,7 @@ update_compositions (from, to, check_mask)
          run_composition_function (start, end, prop);
          from = end;
        }
-      else if (from < to
+      else if (from < ZV
               && find_composition (from, -1, &start, &from, &prop, Qnil))
        run_composition_function (start, from, prop);
     }