From: Jason Rumney Date: Sun, 25 Nov 2001 11:01:10 +0000 (+0000) Subject: (FRAME_X_FRINGE_COLS): No fringe on tip frames. X-Git-Tag: ttn-vms-21-2-B4~18201 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a9181c148c5bb70ac33f3c6bb6512fbb5bda91d4;p=emacs.git (FRAME_X_FRINGE_COLS): No fringe on tip frames. --- diff --git a/src/w32term.h b/src/w32term.h index bed675973bb..99a32de6a97 100644 --- a/src/w32term.h +++ b/src/w32term.h @@ -481,7 +481,8 @@ extern struct w32_output w32term_display; able to split windows horizontally nicely. */ #define FRAME_X_FRINGE_COLS(F) \ - ((2 * FRAME_FRINGE_BITMAP_WIDTH ((F)) + CANON_X_UNIT ((F)) - 1) \ + ((F) == XFRAME (tip_frame) ? 0 : \ + (2 * FRAME_FRINGE_BITMAP_WIDTH ((F)) + CANON_X_UNIT ((F)) - 1) \ / CANON_X_UNIT ((F))) /* Total width of fringes in pixels. */