emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/xdisp.c


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/src/xdisp.c
Date: Wed, 16 Apr 2003 01:09:36 -0400

Index: emacs/src/xdisp.c
diff -c emacs/src/xdisp.c:1.825 emacs/src/xdisp.c:1.826
*** emacs/src/xdisp.c:1.825     Sun Mar 30 10:39:12 2003
--- emacs/src/xdisp.c   Wed Apr 16 01:09:36 2003
***************
*** 12006,12013 ****
      }
    else
      {
!       w->window_end_bytepos = 0;
!       w->window_end_pos = w->window_end_vpos = make_number (0);
      }
  
    /* But that is not valid info until redisplay finishes.  */
--- 12006,12014 ----
      }
    else
      {
!       w->window_end_bytepos = Z_BYTE - ZV_BYTE;
!       w->window_end_pos = make_number (Z - ZV);
!       w->window_end_vpos = make_number (0);
      }
  
    /* But that is not valid info until redisplay finishes.  */
***************
*** 12220,12227 ****
        else
        {
          /* This window must be completely empty.  */
!         w->window_end_bytepos = 0;
!         w->window_end_pos = w->window_end_vpos = make_number (0);
        }
        w->window_end_valid = Qnil;
  
--- 12221,12229 ----
        else
        {
          /* This window must be completely empty.  */
!         w->window_end_bytepos = Z_BYTE - ZV_BYTE;
!         w->window_end_pos = make_number (Z - ZV);
!         w->window_end_vpos = make_number (0);
        }
        w->window_end_valid = Qnil;
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]