diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-03-19 21:03:51 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-03-19 21:03:51 +0800 |
commit | 8c03680cf8ae7bcb7f92e02ade9e3464c324f8f7 (patch) | |
tree | faee4ae637f3f742095b02d8ed3626e02d4aa700 /mbbsd | |
parent | 382d472a8cb7f59f566ac14c2d5f67e13bb583fb (diff) | |
download | pttbbs-8c03680cf8ae7bcb7f92e02ade9e3464c324f8f7.tar pttbbs-8c03680cf8ae7bcb7f92e02ade9e3464c324f8f7.tar.gz pttbbs-8c03680cf8ae7bcb7f92e02ade9e3464c324f8f7.tar.bz2 pttbbs-8c03680cf8ae7bcb7f92e02ade9e3464c324f8f7.tar.lz pttbbs-8c03680cf8ae7bcb7f92e02ade9e3464c324f8f7.tar.xz pttbbs-8c03680cf8ae7bcb7f92e02ade9e3464c324f8f7.tar.zst pttbbs-8c03680cf8ae7bcb7f92e02ade9e3464c324f8f7.zip |
remove unused variable.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2659 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/screen.c b/mbbsd/screen.c index bf744931..c9a0ee79 100644 --- a/mbbsd/screen.c +++ b/mbbsd/screen.c @@ -8,7 +8,7 @@ #define o_standdown() output(endstandout,endstandoutlen) static unsigned char cur_ln = 0, cur_col = 0; -static unsigned char docls, downfrom = 0; +static unsigned char docls; static unsigned char standing = NA; static int scrollcnt, tc_col, tc_line; @@ -243,7 +243,7 @@ clear(void) register int i; docls = YEA; - cur_col = cur_ln = roll = downfrom = 0; + cur_col = cur_ln = roll = 0; for(i=0; i<scr_lns; i++) { slp = &big_picture[i]; slp->mode = slp->len = slp->oldlen = 0; |