diff options
| author | Eli Zaretskii | 2019-06-01 18:52:11 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-06-01 18:52:11 +0300 |
| commit | daf32f1f87b3d71cddd9ab2e9e4c3f5b523ae409 (patch) | |
| tree | 69e940f7c12f43d8340c2033e90356ca0c5e7830 | |
| parent | d8a6d82c4d34286b377fd7bddd4be0116e8dd4b9 (diff) | |
| download | emacs-daf32f1f87b3d71cddd9ab2e9e4c3f5b523ae409.tar.gz emacs-daf32f1f87b3d71cddd9ab2e9e4c3f5b523ae409.zip | |
Speed up redisplay of HELLO
* etc/HELLO: Set 'inhibit-compacting-font-caches' non-nil
locally. (Bug#36032)
* lisp/files.el: Add 'inhibit-compacting-font-caches' to the
list of built-in variables for which we set up
'safe-local-variable' properties.
| -rw-r--r-- | etc/HELLO | 1 | ||||
| -rw-r--r-- | lisp/files.el | 1 |
2 files changed, 2 insertions, 0 deletions
| @@ -96,4 +96,5 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. | |||
| 96 | ;;; tab-width: 32 | 96 | ;;; tab-width: 32 |
| 97 | ;;; bidi-display-reordering: t | 97 | ;;; bidi-display-reordering: t |
| 98 | ;;; coding: iso-2022-7bit | 98 | ;;; coding: iso-2022-7bit |
| 99 | ;;; inhibit-compacting-font-caches: t | ||
| 99 | ;;; End: | 100 | ;;; End: |
diff --git a/lisp/files.el b/lisp/files.el index f3b502095dd..2187eba1a42 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -3233,6 +3233,7 @@ asking you for confirmation." | |||
| 3233 | (fill-column . integerp) ;; C source code | 3233 | (fill-column . integerp) ;; C source code |
| 3234 | (indent-tabs-mode . booleanp) ;; C source code | 3234 | (indent-tabs-mode . booleanp) ;; C source code |
| 3235 | (left-margin . integerp) ;; C source code | 3235 | (left-margin . integerp) ;; C source code |
| 3236 | (inhibit-compacting-font-caches . booleanp) ;; C source code | ||
| 3236 | (no-update-autoloads . booleanp) | 3237 | (no-update-autoloads . booleanp) |
| 3237 | (lexical-binding . booleanp) ;; C source code | 3238 | (lexical-binding . booleanp) ;; C source code |
| 3238 | (tab-width . integerp) ;; C source code | 3239 | (tab-width . integerp) ;; C source code |