]> git.eshelyaron.com Git - emacs.git/commitdiff
(direct_output_for_insert): Pass missing 8th
authorRichard M. Stallman <rms@gnu.org>
Sun, 31 Jul 1994 05:38:17 +0000 (05:38 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 31 Jul 1994 05:38:17 +0000 (05:38 +0000)
argument to compute_char_face.

src/dispnew.c

index c2e27acf0d3b59b9bfba983e024d8653bfa6a785..ec60f3d781695313b350a174960f2c59677947fd 100644 (file)
@@ -1090,7 +1090,7 @@ direct_output_for_insert (g)
     int dummy;
 
     if (FRAME_X_P (frame))
-      face = compute_char_face (frame, w, point - 1, -1, -1, &dummy, point);
+      face = compute_char_face (frame, w, point - 1, -1, -1, &dummy, point, 0);
 #endif
     current_frame->glyphs[vpos][hpos] = MAKE_GLYPH (frame, g, face);
     current_frame->charstarts[vpos][hpos] = point - 1;