]> code.delx.au - gnu-emacs/commitdiff
(compute_char_face): Pass new arg to overlays_at.
authorRichard M. Stallman <rms@gnu.org>
Wed, 21 Sep 1994 06:46:02 +0000 (06:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 21 Sep 1994 06:46:02 +0000 (06:46 +0000)
src/xfaces.c

index 33ffb588f4c5e01d85311d84536bae59cae77a14..265c67bcaad9027c3cad863da0b56474b9e89e4e 100644 (file)
@@ -839,7 +839,7 @@ compute_char_face (f, w, pos, region_beg, region_end, endptr, limit, mouse)
     len = 40;
     overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
     
-    noverlays = overlays_at (pos, 0, &overlay_vec, &len, &next_overlay);
+    noverlays = overlays_at (pos, 0, &overlay_vec, &len, &next_overlay, NULL);
 
     /* If there are more than 40,
        make enough space for all, and try again.  */
@@ -847,7 +847,8 @@ compute_char_face (f, w, pos, region_beg, region_end, endptr, limit, mouse)
       {
        len = noverlays;
        overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
-       noverlays = overlays_at (pos, 0, &overlay_vec, &len, &next_overlay);
+       noverlays = overlays_at (pos, 0, &overlay_vec, &len,
+                                &next_overlay, NULL);
       }
 
     if (next_overlay < endpos)