From: Richard M. Stallman Date: Sun, 31 Jul 1994 05:38:17 +0000 (+0000) Subject: (direct_output_for_insert): Pass missing 8th X-Git-Tag: emacs-19.34~7459 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ea62c5a57eb04e7edf0ac740d28fe54efe41f32c;p=emacs.git (direct_output_for_insert): Pass missing 8th argument to compute_char_face. --- diff --git a/src/dispnew.c b/src/dispnew.c index c2e27acf0d3..ec60f3d7816 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -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;