From b6d5f61bd7a9053b9ec580ec99f870b0d20477a3 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Wed, 20 Nov 2019 08:32:31 +0100 Subject: [PATCH] Fix the frame font setting function The last parameter should be a list of frames instead of a single frame. --- configuration.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.org b/configuration.org index 953c033..6dfe143 100644 --- a/configuration.org +++ b/configuration.org @@ -1071,7 +1071,7 @@ Before this can be used, make sure the [[https://zhm.github.io/symbola/][Symbola (defun gpolonkai/set-font-size (frame) (when (display-graphic-p frame) (set-face-attribute 'default frame :font "Hack-12") - (set-frame-font "Hack-12" t frame))) + (set-frame-font "Hack-12" t (list frame)))) (defun --set-emoji-font (frame) "Adjust the font setting of FRAME so Emacs can display Emoji properly."