diff options
| author | Jason Rumney | 2001-11-25 11:01:10 +0000 |
|---|---|---|
| committer | Jason Rumney | 2001-11-25 11:01:10 +0000 |
| commit | a9181c148c5bb70ac33f3c6bb6512fbb5bda91d4 (patch) | |
| tree | e6d227a22ddb9c7534dc6bd8e05cc36fbaa5b4c5 /src/w32term.h | |
| parent | 47eda1bda927d418f99cea9b50361daae99797e5 (diff) | |
| download | emacs-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.h | 3 |
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. */ |