diff options
author | Christoph Lohmann <20h@r-36.net> | 2013-04-13 08:50:38 +0200 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2013-04-13 08:50:38 +0200 |
commit | 5984657c001fe5b4690cef5ddffe11acbf7da7f2 (patch) | |
tree | 3506bf072dd0238d53ac72f0546dd55133b41f0b /st.c | |
parent | 4018b2c5075c1cab603ca137ef5f6d68b9cee483 (diff) | |
download | st-5984657c001fe5b4690cef5ddffe11acbf7da7f2.tar.gz st-5984657c001fe5b4690cef5ddffe11acbf7da7f2.tar.bz2 |
Minor naming issue fixed.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -758,7 +758,7 @@ bpress(XEvent *e) { void selcopy(void) { char *str, *ptr, *p; - int x, y, bufsize, is_selected = 0, size; + int x, y, bufsize, isselected = 0, size; Glyph *gp, *last; if(sel.bx == -1) { @@ -769,7 +769,7 @@ selcopy(void) { /* append every set & selected glyph to the selection */ for(y = sel.b.y; y < sel.e.y + 1; y++) { - is_selected = 0; + isselected = 0; gp = &term.line[y][0]; last = gp + term.col; @@ -780,7 +780,7 @@ selcopy(void) { if(!selected(x, y)) { continue; } else { - is_selected = 1; + isselected = 1; } p = (gp->state & GLYPH_SET) ? gp->c : " "; @@ -798,7 +798,7 @@ selcopy(void) { * st. * FIXME: Fix the computer world. */ - if(is_selected && y < sel.e.y) + if(isselected && y < sel.e.y) *ptr++ = '\n'; } *ptr = 0; |