diff options
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/zle_refresh.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Src/Zle/zle_refresh.c b/Src/Zle/zle_refresh.c index 6a50d8b99..ba6fdaaf1 100644 --- a/Src/Zle/zle_refresh.c +++ b/Src/Zle/zle_refresh.c @@ -1879,6 +1879,8 @@ refreshline(int ln) /* 3: main display loop - write out the buffer using whatever tricks we can */ for (;;) { + int now_off; + #ifdef MULTIBYTE_SUPPORT if ((!nl->chr || nl->chr != WEOF) && (!ol->chr || ol->chr != WEOF)) { #endif @@ -2050,7 +2052,7 @@ refreshline(int ln) * If an attribute was on here but isn't any more, * output the sequence to turn it off. */ - int now_off = ol->atr & ~nl->atr & TXT_ATTR_ON_MASK; + now_off = ol->atr & ~nl->atr & TXT_ATTR_ON_MASK; if (now_off) settextattributes(TXT_ATTR_OFF_FROM_ON(now_off)); |