aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32term.h
diff options
context:
space:
mode:
authorJason Rumney2001-11-25 11:01:10 +0000
committerJason Rumney2001-11-25 11:01:10 +0000
commita9181c148c5bb70ac33f3c6bb6512fbb5bda91d4 (patch)
treee6d227a22ddb9c7534dc6bd8e05cc36fbaa5b4c5 /src/w32term.h
parent47eda1bda927d418f99cea9b50361daae99797e5 (diff)
downloademacs-a9181c148c5bb70ac33f3c6bb6512fbb5bda91d4.tar.gz
emacs-a9181c148c5bb70ac33f3c6bb6512fbb5bda91d4.zip
(FRAME_X_FRINGE_COLS): No fringe on tip frames.
Diffstat (limited to 'src/w32term.h')
-rw-r--r--src/w32term.h3
1 files changed, 2 insertions, 1 deletions
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;
481 able to split windows horizontally nicely. */ 481 able to split windows horizontally nicely. */
482 482
483#define FRAME_X_FRINGE_COLS(F) \ 483#define FRAME_X_FRINGE_COLS(F) \
484 ((2 * FRAME_FRINGE_BITMAP_WIDTH ((F)) + CANON_X_UNIT ((F)) - 1) \ 484 ((F) == XFRAME (tip_frame) ? 0 : \
485 (2 * FRAME_FRINGE_BITMAP_WIDTH ((F)) + CANON_X_UNIT ((F)) - 1) \
485 / CANON_X_UNIT ((F))) 486 / CANON_X_UNIT ((F)))
486 487
487/* Total width of fringes in pixels. */ 488/* Total width of fringes in pixels. */