aboutsummaryrefslogtreecommitdiff
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
commitfd281ad336166de21c9d8652f465ab40a0f12468 (patch)
treeb009cfa3afda0cad954928d0cf1fc453aa5b1f95
parentd58dd3b8bc42ed31232e4145696d7dacb117a31c (diff)
downloadst-fd281ad336166de21c9d8652f465ab40a0f12468.tar.gz
st-fd281ad336166de21c9d8652f465ab40a0f12468.zip
Removed unused variable and cleaned some comment.
-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) {
217 } 217 }
218 break; 218 break;
219 case '(': 219 case '(':
220 /* humf charset stuff */ 220 /* XXX: graphic character set */
221 break; 221 break;
222 } 222 }
223} 223}
@@ -230,8 +230,7 @@ tmoveto(int x, int y) {
230 230
231void 231void
232tcursor(int dir) { 232tcursor(int dir) {
233 int xi = term.c.x, yi = term.c.y; 233 int xf = term.c.x, yf = term.c.y;
234 int xf = xi, yf = yi;
235 234
236 switch(dir) { 235 switch(dir) {
237 case CSup: 236 case CSup: