]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fset_window_hscroll): Set clip_changed in the buffer.
authorRichard M. Stallman <rms@gnu.org>
Fri, 7 Jul 1995 13:34:49 +0000 (13:34 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 7 Jul 1995 13:34:49 +0000 (13:34 +0000)
(temp_output_buffer_show): Likewise.

src/window.c

index 56fa5882528b15dc9da0f60d4362641a4710803a..f9dd50e7f3187edadfe363ec10409b194386e54d 100644 (file)
@@ -311,7 +311,7 @@ NCOL should be zero or positive.")
     args_out_of_range (ncol, Qnil);
   w = decode_window (window);
   if (XINT (w->hscroll) != XINT (ncol))
-    clip_changed = 1;          /* Prevent redisplay shortcuts */
+    XBUFFER (w->buffer)->clip_changed = 1; /* Prevent redisplay shortcuts */
   w->hscroll = ncol;
   return ncol;
 }
@@ -2111,7 +2111,7 @@ temp_output_buffer_show (buf)
   BEGV = BEG;
   ZV = Z;
   SET_PT (BEG);
-  clip_changed = 1;
+  XBUFFER (buf)->clip_changed = 1;
   set_buffer_internal (old);
 
   if (!EQ (Vtemp_buffer_show_function, Qnil))