diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-13 16:26:31 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-13 16:26:31 +0200 |
commit | f358cf629b199d41343e3e3407af23e751a6279a (patch) | |
tree | 70db8b74f8b10164128fe524d89005602d239e38 /.config/emacs | |
parent | 01d51379186aebb296a5644d1f629d87f192d94f (diff) |
emacs: ‘after-make-frame-functions’ hooks take arg
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/config.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org index f12a918..2afe6ba 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -656,7 +656,7 @@ every frame. We also can’t forget the frame that’s actually running this co :weight prop-weight :height prop-height))) - (add-hook 'after-make-frame-functions (λ (mm-set-fonts))) + (add-hook 'after-make-frame-functions (lambda (_) (mm-set-fonts))) (mm-set-fonts) #+END_SRC |