diff options
| author | Paul Eggert | 2016-10-10 07:39:05 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-10-10 07:39:05 -0700 |
| commit | 46b83c0f08f936eb1a0ae761db557169fe295cc7 (patch) | |
| tree | bdb663d86a908a83b7c953316d04714664b32a0c /src/alloc.c | |
| parent | be589ea0dc71063d26595378df303a2a1c25ee4e (diff) | |
| parent | 4f406e9813e073b675bb45613bf1dd111eec2368 (diff) | |
| download | emacs-46b83c0f08f936eb1a0ae761db557169fe295cc7.tar.gz emacs-46b83c0f08f936eb1a0ae761db557169fe295cc7.zip | |
Merge from origin/emacs-25
4f406e9 CC Mode manual: remove reference to former Emacs variable las...
44e402e Allow to disable compaction of font caches
4ff4b66 Allow selection of font for symbols as in Emacs 24.x
c03d44b ; Fix last commit
d4be4f3 ; Fix indexing in lispref manual
ed399f2 ; Minor improvement in documentation of generators
197a6bc Fix horizontal scrolling during Isearch
3566644 Fix infloop in redisplay due to truncated lines and invisible...
# Conflicts:
# etc/NEWS
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 72987dd3190..ab23072aafa 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -5598,7 +5598,11 @@ compact_font_caches (void) | |||
| 5598 | for (t = terminal_list; t; t = t->next_terminal) | 5598 | for (t = terminal_list; t; t = t->next_terminal) |
| 5599 | { | 5599 | { |
| 5600 | Lisp_Object cache = TERMINAL_FONT_CACHE (t); | 5600 | Lisp_Object cache = TERMINAL_FONT_CACHE (t); |
| 5601 | if (CONSP (cache)) | 5601 | /* Inhibit compacting the caches if the user so wishes. Some of |
| 5602 | the users don't mind a larger memory footprint, but do mind | ||
| 5603 | slower redisplay. */ | ||
| 5604 | if (!inhibit_compacting_font_caches | ||
| 5605 | && CONSP (cache)) | ||
| 5602 | { | 5606 | { |
| 5603 | Lisp_Object entry; | 5607 | Lisp_Object entry; |
| 5604 | 5608 | ||