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: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/src/w32term.c
Date: Sat, 02 Jul 2005 05:53:02 -0400

Index: emacs/src/w32term.c
diff -c emacs/src/w32term.c:1.226 emacs/src/w32term.c:1.227
*** emacs/src/w32term.c:1.226   Fri Jul  1 21:26:59 2005
--- emacs/src/w32term.c Sat Jul  2 09:53:02 2005
***************
*** 510,515 ****
--- 510,516 ----
    struct frame *f = XFRAME (WINDOW_FRAME (w));
    RECT r;
    HDC hdc;
+   struct face *face;
  
    r.left = x;
    r.right = x + 1;
***************
*** 517,523 ****
    r.bottom = y1;
  
    hdc = get_frame_dc (f);
!   w32_fill_rect (f, hdc, FRAME_FOREGROUND_PIXEL (f), &r);
    release_frame_dc (f, hdc);
  }
  
--- 518,529 ----
    r.bottom = y1;
  
    hdc = get_frame_dc (f);
!   face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
!   if (face)
!     w32_fill_rect (f, hdc, face->foreground, &r);
!   else
!     w32_fill_rect (f, hdc, FRAME_FOREGROUND_PIXEL (f), &r);
! 
    release_frame_dc (f, hdc);
  }
  




reply via email to

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