Removed unused variable and cleaned some comment.

This commit is contained in:
Aurélien Aptel 2009-05-10 23:32:21 +02:00
parent d58dd3b8bc
commit fd281ad336
1 changed files with 2 additions and 3 deletions

5
st.c
View File

@ -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: