]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/term.c (turn_on_face): Fix coding style.
authorPo Lu <luangruo@yahoo.com>
Sun, 28 Apr 2024 01:27:59 +0000 (09:27 +0800)
committerEshel Yaron <me@eshelyaron.com>
Mon, 29 Apr 2024 15:05:24 +0000 (17:05 +0200)
(cherry picked from commit 4992df159157806bcbad87569f34dc5136c96601)

src/term.c

index a0baf5448971d086acbee87b2daa9f21ef9259e4..6cb57592643c76cc1e7f10cb988c488329fe1d53 100644 (file)
@@ -2056,9 +2056,9 @@ turn_on_face (struct frame *f, int face_id)
        ts = tty->TF_set_underline_color;
        if (ts && face->underline_color)
          {
-               p = tparam (ts, NULL, 0, face->underline_color, 0, 0, 0);
-               OUTPUT (tty, p);
-               xfree (p);
+           p = tparam (ts, NULL, 0, face->underline_color, 0, 0, 0);
+           OUTPUT (tty, p);
+           xfree (p);
          }
     }
 }