summaryrefslogtreecommitdiffstats
path: root/mbbsd/pmore.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-01-12 13:43:03 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-01-12 13:43:03 +0800
commitb88a96b97d0771cc038c69adae2212de41b5c7e5 (patch)
treec7c82d2ea7f5d774e5cb9f0b5a44dc85d3668480 /mbbsd/pmore.c
parenta1cabe2b83732154321ed07a75b38f1d61807a82 (diff)
downloadpttbbs-b88a96b97d0771cc038c69adae2212de41b5c7e5.tar
pttbbs-b88a96b97d0771cc038c69adae2212de41b5c7e5.tar.gz
pttbbs-b88a96b97d0771cc038c69adae2212de41b5c7e5.tar.bz2
pttbbs-b88a96b97d0771cc038c69adae2212de41b5c7e5.tar.lz
pttbbs-b88a96b97d0771cc038c69adae2212de41b5c7e5.tar.xz
pttbbs-b88a96b97d0771cc038c69adae2212de41b5c7e5.tar.zst
pttbbs-b88a96b97d0771cc038c69adae2212de41b5c7e5.zip
- license text update
- pmore: change lua hotkey to L - bbslua: don't grayout at exit git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3823 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/pmore.c')
-rw-r--r--mbbsd/pmore.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/mbbsd/pmore.c b/mbbsd/pmore.c
index 98b6b2f8..4f5af25b 100644
--- a/mbbsd/pmore.c
+++ b/mbbsd/pmore.c
@@ -11,11 +11,13 @@
* specific to any branch.
*
* Author: Hung-Te Lin (piaip), June 2005.
- * <piaip@csie.ntu.edu.tw>
+ *
+ * Copyright(c) 2005-2008 Hung-Te Lin <piaip@csie.ntu.edu.tw>
* All Rights Reserved.
* You are free to use, modify, redistribute this program
- * in any non-commercial usage.
- * You must keep these copyright information.
+ * in any non-commercial usage (including network service).
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
*
* MAJOR IMPROVEMENTS:
* - Clean source code, and more readable for mortal
@@ -1814,6 +1816,10 @@ pmore(char *fpath, int promptend)
#endif
move(b_lines, 0);
// clrtoeol(); // this shall be done in mf_display to speed up.
+
+#ifdef USE_BBSLUA
+ // TODO prompt BBS Lua status here.
+#endif // USE_BBSLUA
#ifdef PMORE_USE_ASCII_MOVIE
switch (mfmovie.mode)
@@ -2383,6 +2389,11 @@ pmore(char *fpath, int promptend)
#if defined(USE_BBSLUA) && defined(RET_DOBBSLUA)
case 'P':
+ vmsg("非常抱歉,BBS-Lua 的熱鍵已改為 L ,請改按 L");
+ break;
+
+ case 'L':
+ case 'l':
flExit = 1, retval = RET_DOBBSLUA;
break;
#endif