aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2015-10-05 20:08:21 +0200
committerChristoph Lohmann <20h@r-36.net>2015-10-05 20:08:21 +0200
commit2bef36ab81c356b106f00221038b743819cd20bd (patch)
tree76030fa5cf6e55031222e081f93a59a7035c9ae7
parent168248432705eff5fc44cf8a566bc090ca59d78a (diff)
downloadst-patched-2bef36ab81c356b106f00221038b743819cd20bd.tar.bz2
st-patched-2bef36ab81c356b106f00221038b743819cd20bd.tar.xz
st-patched-2bef36ab81c356b106f00221038b743819cd20bd.zip
Small style change.
-rw-r--r--st.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/st.c b/st.c
index 9de30ec..4d4f115 100644
--- a/st.c
+++ b/st.c
@@ -3855,10 +3855,10 @@ xdrawcursor(void)
3855 case 1: /* Blinking Block (Default) */ 3855 case 1: /* Blinking Block (Default) */
3856 case 2: /* Steady Block */ 3856 case 2: /* Steady Block */
3857 if (IS_SET(MODE_REVERSE)) { 3857 if (IS_SET(MODE_REVERSE)) {
3858 g.mode |= ATTR_REVERSE; 3858 g.mode |= ATTR_REVERSE;
3859 g.fg = defaultcs; 3859 g.fg = defaultcs;
3860 g.bg = defaultfg; 3860 g.bg = defaultfg;
3861 } 3861 }
3862 3862
3863 g.mode |= term.line[term.c.y][curx].mode & ATTR_WIDE; 3863 g.mode |= term.line[term.c.y][curx].mode & ATTR_WIDE;
3864 xdrawglyph(g, term.c.x, term.c.y); 3864 xdrawglyph(g, term.c.x, term.c.y);