From: Karl Heuer Date: Sat, 19 Mar 1994 02:52:39 +0000 (+0000) Subject: (direct_output_for_insert): Handle termcap frames as well as X. X-Git-Tag: emacs-19.34~9438 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a1c3de84f5f59a5e15cf6f691a42a4f3fe6dd4ed;p=emacs.git (direct_output_for_insert): Handle termcap frames as well as X. --- diff --git a/src/dispnew.c b/src/dispnew.c index e02aa249be4..e954d62312e 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -896,11 +896,8 @@ direct_output_for_insert (g) #ifdef HAVE_X_WINDOWS int dummy; int face = compute_char_face (frame, w, point - 1, -1, -1, &dummy, point); -#else - int face = 0; #endif - - current_frame->glyphs[vpos][hpos] = MAKE_GLYPH (g, face); + current_frame->glyphs[vpos][hpos] = MAKE_GLYPH (frame, g, face); } unchanged_modified = MODIFF; beg_unchanged = GPT - BEG; @@ -2230,4 +2227,3 @@ See `buffer-display-table' for more information."); Vwindow_system_version = Qnil; } } -