diff options
author | Jashank Jeremy <jashank@rulingia.com.au> | 2021-07-21 16:01:03 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-07-21 16:01:13 +0200 |
commit | e3b8ddd5005903465ec86823559a2e884c7b13f2 (patch) | |
tree | 034f55b94d1241544c49225092d9ed672384b8d1 /lisp/custom.el | |
parent | e56ad2cb0f0cff2b7c2359bc3fa0b432dfd571f5 (diff) | |
download | emacs-e3b8ddd5005903465ec86823559a2e884c7b13f2.tar.gz emacs-e3b8ddd5005903465ec86823559a2e884c7b13f2.tar.bz2 emacs-e3b8ddd5005903465ec86823559a2e884c7b13f2.zip |
Speed up by storing frame faces in hash tables instead of alists
* src/frame.h (struct frame): Add face_hash_table, remove face_alist.
(fset_face_hash_table): New function.
(fset_face_alist): Remove.
* src/frame.c (make_frame): Initialize f->face_hash_table.
(Fmake_terminal_frame): Update to work with hash tables instead of
alists.
* src/xfaces.c (lface_from_face_name_no_resolve):
(Finternal_make_lisp_face):
(update_face_from_frame_parameter): Update to work with hash tables
instead of alists.
(Fframe_face_hash_table): New function.
(Fframe_face_alist): Move to faces.el as frame-face-alist.
(syms_of_xfaces): Add frame_face_hash_table.
* lisp/progmodes/elisp-mode.el (elisp--eval-defun-1):
* lisp/frame.el (frame-set-background-mode): Update to work with hash
tables instead of alists.
* lisp/faces.el (face-new-frame-defaults): Mark obsolete.
(face-list): Update to use face--new-frame-defaults.
(frame-face-alist): Moved here from src/xfaces.c.
(x-create-frame-with-faces): Update to handle subtle semantic change
to how frame faces propagate, which otherwise breaks frame creation
with reverse video enabled (bug#41200).
Reworked from a patch by Clément Pit-Claudel <clement.pitclaudel@live.com>.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r-- | lisp/custom.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/custom.el b/lisp/custom.el index 1db3f4fd394..f392bd8d369 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -926,7 +926,7 @@ See `custom-known-themes' for a list of known themes." ;; the value to a fake theme, `changed'. If the theme is ;; later disabled, we use this to bring back the old value. ;; - ;; For faces, we just use `face-new-frame-defaults' to + ;; For faces, we just use `face--new-frame-defaults' to ;; recompute when the theme is disabled. (when (and (eq prop 'theme-value) (boundp symbol)) |