(display_string): Ignore W->left if OBEY_WINDOW_WIDTH is zero.
authorRichard M. Stallman <rms@gnu.org>
Fri, 18 Jul 1997 17:46:56 +0000 (17:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 18 Jul 1997 17:46:56 +0000 (17:46 +0000)
src/xdisp.c

index 7790109de869ac12964ab7a3ba9dd25ce3374bcc..d5a867d22b3f1bcbf0ce89f53bc64e2d1ac36f82 100644 (file)
@@ -4675,10 +4675,11 @@ display_string (w, vpos, string, length, hpos, truncate,
   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))