git.y1.nz

mtm

Ncurses-based terminal multiplexer
download: https://git.y1.nz/archives/mtm.tar.gz
Files | Log | Refs

commit e4ab5160f53de2053a49ef78a8121b5f039d8958
parent d0db6c5fa3b85b8bb29f50d6b1b8fb6ae8fa5845
Author: Rob King <jking@deadpixi.com>
Date:   Thu, 25 Jul 2019 21:58:18 -0500

Style fix.

Diffstat:
Mmtm.c6++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/mtm.c b/mtm.c @@ -485,10 +485,8 @@ HANDLER(sgr) /* SGR - Select Graphic Rendition */ case 23: wattroff(win, A_ITALIC); break; #endif } - if (doc){ - s->fg = fg; s->bg = bg; - wcolor_set(win, alloc_pair(s->fg, s->bg), NULL); - } + if (doc) + wcolor_set(win, alloc_pair(s->fg = fg, s->bg = bg), NULL); } HANDLER(cr) /* CR - Carriage Return */

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.