1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

(compute_motion): Fix last change.

This commit is contained in:
Kim F. Storm 2004-08-02 23:59:28 +00:00
parent ed5c373cab
commit 8cc08515f4

View File

@ -1260,10 +1260,10 @@ compute_motion (from, fromvpos, fromhpos, did_motion, to, tovpos, tohpos, width,
width -= 1;
}
continuation_glyph_width = 0;
continuation_glyph_width = 1;
#ifdef HAVE_WINDOW_SYSTEM
if (!FRAME_WINDOW_P (XFRAME (win->frame)))
continuation_glyph_width = 1;
if (FRAME_WINDOW_P (XFRAME (win->frame)))
continuation_glyph_width = 0; /* In the fringe. */
#endif
immediate_quit = 1;