From 8574ae625e3144d92bb59a0107a4404cc3d0ab86 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Sat, 24 Sep 2022 20:17:28 +0300 Subject: [PATCH] * lisp/emacs-lisp/icons.el (icons--create): Use default rotation 0 (bug#57813) --- lisp/emacs-lisp/icons.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/icons.el b/lisp/emacs-lisp/icons.el index ccc36577932..a08ac7463ce 100644 --- a/lisp/emacs-lisp/icons.el +++ b/lisp/emacs-lisp/icons.el @@ -203,7 +203,7 @@ present if the icon is represented by an image." (window-default-line-height) height) :scale 1 - :rotation (plist-get keywords :rotation) + :rotation (or (plist-get keywords :rotation) 0) :ascent (if (plist-member keywords :ascent) (plist-get keywords :ascent) 'center)) -- 2.39.2