emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Jason Rumney
Subject: [Emacs-diffs] Changes to emacs/src/w32term.c
Date: Fri, 29 Mar 2002 13:33:53 -0500

Index: emacs/src/w32term.c
diff -c emacs/src/w32term.c:1.153 emacs/src/w32term.c:1.154
*** emacs/src/w32term.c:1.153   Fri Mar 22 19:33:22 2002
--- emacs/src/w32term.c Fri Mar 29 13:33:52 2002
***************
*** 3728,3741 ****
    for (i = 0; i < width; ++i)
      w32_fill_area (f, hdc, gc.foreground,
                   left_x + i * left_p, top_y + i,
!                  (right_x + 1 - i * right_p) - (left_x + i * left_p) + 1, 1);
  
    /* Left.  */
    if (left_p)
      for (i = 0; i < width; ++i)
        w32_fill_area (f, hdc, gc.foreground,
                     left_x + i, top_y + i, 1,
!                    (bottom_y - i) - (top_y + i) + 2);
  
    if (raised_p)
      gc.foreground = f->output_data.w32->black_relief.gc->foreground;
--- 3728,3741 ----
    for (i = 0; i < width; ++i)
      w32_fill_area (f, hdc, gc.foreground,
                   left_x + i * left_p, top_y + i,
!                  right_x - left_x - i * (left_p + right_p ) + 1, 1);
  
    /* Left.  */
    if (left_p)
      for (i = 0; i < width; ++i)
        w32_fill_area (f, hdc, gc.foreground,
                     left_x + i, top_y + i, 1,
!                    bottom_y - top_y - 2 * i + 1);
  
    if (raised_p)
      gc.foreground = f->output_data.w32->black_relief.gc->foreground;
***************
*** 3746,3759 ****
    for (i = 0; i < width; ++i)
      w32_fill_area (f, hdc, gc.foreground, 
                   left_x + i * left_p, bottom_y - i,
!                  (right_x - i * right_p) - (left_x + i * left_p) + 2, 1);
  
    /* Right.  */
    if (right_p)
      for (i = 0; i < width; ++i)
        w32_fill_area (f, hdc, gc.foreground,
                     right_x - i, top_y + i + 1, 1,
!                    (bottom_y - i) - (top_y + i));
  
    w32_set_clip_rectangle (hdc, NULL);
    
--- 3746,3759 ----
    for (i = 0; i < width; ++i)
      w32_fill_area (f, hdc, gc.foreground, 
                   left_x + i * left_p, bottom_y - i,
!                  right_x - left_x - i * (left_p + right_p) + 1, 1);
  
    /* Right.  */
    if (right_p)
      for (i = 0; i < width; ++i)
        w32_fill_area (f, hdc, gc.foreground,
                     right_x - i, top_y + i + 1, 1,
!                    bottom_y - top_y - 2 * i - 1);
  
    w32_set_clip_rectangle (hdc, NULL);
    



reply via email to

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