# HG changeset patch # User Richard M. Stallman # Date 869248016 0 # Node ID ab7fae9922365324a35da9a4c2a5870c0e928790 # Parent bee41cc3fd482d1546e7e35f4d76cecc57ecf221 (display_string): Ignore W->left if OBEY_WINDOW_WIDTH is zero. diff -r bee41cc3fd48 -r ab7fae992236 src/xdisp.c --- a/src/xdisp.c Fri Jul 18 16:06:57 1997 +0000 +++ b/src/xdisp.c Fri Jul 18 17:46:56 1997 +0000 @@ -4675,10 +4675,11 @@ if (tab_width <= 0 || tab_width > 1000) tab_width = 8; p1 = p1start; - start = desired_glyphs->glyphs[vpos] + XFASTINT (w->left); + start = desired_glyphs->glyphs[vpos]; if (obey_window_width) { + start += XFASTINT (w->left); end = start + window_width - (truncate != 0); if (!WINDOW_RIGHTMOST_P (w))