From: Robert Pluim Date: Tue, 23 Feb 2021 14:21:26 +0000 (+0100) Subject: ; * src/xfaces.c (realize_gui_face): Correct formatting X-Git-Tag: emacs-28.0.90~3549 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a1673d329643073233114c22d6d2c1af8dffa51b;p=emacs.git ; * src/xfaces.c (realize_gui_face): Correct formatting * src/xfaces.c (realize_gui_face): Correct code formatting. --- diff --git a/src/xfaces.c b/src/xfaces.c index 4b020001c31..ab4440f46ad 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -6034,10 +6034,11 @@ realize_gui_face (struct face_cache *cache, Lisp_Object attrs[LFACE_VECTOR_SIZE] face->box = FACE_RAISED_BOX; else if (EQ (value, Qpressed_button)) face->box = FACE_SUNKEN_BOX; - else if (EQ (value, Qflat_button)) { - face->box = FACE_SIMPLE_BOX; - face->box_color = face->background; - } + else if (EQ (value, Qflat_button)) + { + face->box = FACE_SIMPLE_BOX; + face->box_color = face->background; + } } } }