summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-06-08 21:59:24 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-06-08 21:59:24 +0800
commitefe587db4d49f0c12e592fd46cf141f88811a09b (patch)
tree232e232770a6f2407df83556339a2402df6a9d68
parent605b7a3e8c27c10276ba8c0322b90b12f2db18c5 (diff)
downloadpttbbs-efe587db4d49f0c12e592fd46cf141f88811a09b.tar
pttbbs-efe587db4d49f0c12e592fd46cf141f88811a09b.tar.gz
pttbbs-efe587db4d49f0c12e592fd46cf141f88811a09b.tar.bz2
pttbbs-efe587db4d49f0c12e592fd46cf141f88811a09b.tar.lz
pttbbs-efe587db4d49f0c12e592fd46cf141f88811a09b.tar.xz
pttbbs-efe587db4d49f0c12e592fd46cf141f88811a09b.tar.zst
pttbbs-efe587db4d49f0c12e592fd46cf141f88811a09b.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/pttbbs@4524 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--mbbsd/pmore.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/mbbsd/pmore.c b/mbbsd/pmore.c
index 36aa1b2d..cb748a71 100644
--- a/mbbsd/pmore.c
+++ b/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
*/