aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2009-05-10 23:32:21 +0200
committerAurélien Aptel <aurelien.aptel@gmail.com>2009-05-10 23:32:21 +0200
commitda01ce7465cfdd276a4b451daf2d809fffcdb516 (patch)
treeb009cfa3afda0cad954928d0cf1fc453aa5b1f95 /st.c
parentc740fb5be8be9f75e1ed69758d05773c96d079ee (diff)
downloadst-da01ce7465cfdd276a4b451daf2d809fffcdb516.tar.gz
st-da01ce7465cfdd276a4b451daf2d809fffcdb516.tar.bz2
Removed unused variable and cleaned some comment.
Diffstat (limited to 'st.c')
-rw-r--r--st.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/st.c b/st.c
index d5f004b..f295955 100644
--- a/st.c
+++ b/st.c
@@ -217,7 +217,7 @@ escparse(void) {
}
break;
case '(':
- /* humf charset stuff */
+ /* XXX: graphic character set */
break;
}
}
@@ -230,8 +230,7 @@ tmoveto(int x, int y) {
void
tcursor(int dir) {
- int xi = term.c.x, yi = term.c.y;
- int xf = xi, yf = yi;
+ int xf = term.c.x, yf = term.c.y;
switch(dir) {
case CSup: