diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-06-08 21:59:24 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-06-08 21:59:24 +0800 |
commit | 5977527e3201e3665710db10d17ebde34e647bef (patch) | |
tree | 1f4872b2ed354946744d3a39c6c293930d3d160f | |
parent | 121ae3fbef8cffe2b5b73f47e7158758013c3d07 (diff) | |
download | pttbbs-5977527e3201e3665710db10d17ebde34e647bef.tar pttbbs-5977527e3201e3665710db10d17ebde34e647bef.tar.gz pttbbs-5977527e3201e3665710db10d17ebde34e647bef.tar.bz2 pttbbs-5977527e3201e3665710db10d17ebde34e647bef.tar.lz pttbbs-5977527e3201e3665710db10d17ebde34e647bef.tar.xz pttbbs-5977527e3201e3665710db10d17ebde34e647bef.tar.zst pttbbs-5977527e3201e3665710db10d17ebde34e647bef.zip |
* the 'only special key to break in interactive mode' was not needed - command can already do that
* minor comment fix
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@4524 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/pmore.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/pttbbs/mbbsd/pmore.c b/pttbbs/mbbsd/pmore.c index 36aa1b2d..cb748a71 100644 --- a/pttbbs/mbbsd/pmore.c +++ b/pttbbs/mbbsd/pmore.c @@ -12,7 +12,7 @@ * * Author: Hung-Te Lin (piaip), June 2005. * - * Copyright (c) 2005-2008 Hung-Te Lin <piaip@csie.ntu.edu.tw> + * Copyright (c) 2005-2009 Hung-Te Lin <piaip@csie.ntu.edu.tw> * All rights reserved. * * Distributed under a Non-Commercial 4clause-BSD alike license. @@ -80,6 +80,7 @@ * - (2008) Maple3 BBS porting [done, thanks to hrs113355 for initial work] * - Reject waterball (instant message) when playing movie * - Support Anti-anti-idle (ex, PCMan sends up-down) + * - Deal or disable Ctrl-U (invokes userlist then waiting one more key) * - Better help system [pending] * - Virtual Contatenate [pending] * - Virtual Decompression [pending] @@ -408,7 +409,7 @@ MFFPROTO void pmore_outns(const char *str, int n) { while (*str && n--) { - outc((unsigned char)*str++); + outc((unsigned char)*str++); } } @@ -4086,13 +4087,6 @@ mf_movieNextFrame() mf_float2tv(MOVIE_MIN_FRAMECLK, &tv); c = mf_movieWaitKey(&tv, 0); - // temporary disable this due to compatibility - -#if 0 - // XXX TODO when using interactive mode, - // allow only special keys to break. - if (mfmovie.interactive && c != 1) // c == 1: unknown error - c = mf_movieIsSystemBreak(c); -#endif if (c) { @@ -4130,5 +4124,5 @@ mf_movieNextFrame() } #endif -/* vim:sw=4:ts=8:expandtab:nofoldenable +/* vim:sw=4:ts=8:et:nofoldenable */ |