Browse Source

Removed unused variable and cleaned some comment.

master
Aurélien Aptel 16 years ago
parent
commit
fd281ad336
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      st.c

+ 2
- 3
st.c View File

@ -217,7 +217,7 @@ escparse(void) {
} }
break; break;
case '(': case '(':
/* humf charset stuff */
/* XXX: graphic character set */
break; break;
} }
} }
@ -230,8 +230,7 @@ tmoveto(int x, int y) {
void void
tcursor(int dir) { 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) { switch(dir) {
case CSup: case CSup:


Loading…
Cancel
Save