aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/font.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/font.c b/src/font.c
index ce85e0bb4ad..935dd64e648 100644
--- a/src/font.c
+++ b/src/font.c
@@ -5509,7 +5509,14 @@ and cannot switch to a smaller font for those characters, set
5509this variable non-nil. 5509this variable non-nil.
5510Disabling compaction of font caches might enlarge the Emacs memory 5510Disabling compaction of font caches might enlarge the Emacs memory
5511footprint in sessions that use lots of different fonts. */); 5511footprint in sessions that use lots of different fonts. */);
5512
5513#ifdef WINDOWSNT
5514 /* Compacting font caches causes slow redisplay on Windows with many
5515 large fonts, so we disable it by default. */
5516 inhibit_compacting_font_caches = 1;
5517#else
5512 inhibit_compacting_font_caches = 0; 5518 inhibit_compacting_font_caches = 0;
5519#endif
5513 5520
5514 DEFVAR_BOOL ("xft-ignore-color-fonts", 5521 DEFVAR_BOOL ("xft-ignore-color-fonts",
5515 Vxft_ignore_color_fonts, 5522 Vxft_ignore_color_fonts,