summaryrefslogtreecommitdiffstats
path: root/mbbsd/edit.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-07-05 00:42:30 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-07-05 00:42:30 +0800
commit674ab918d3c0a9bb22aec5f2c8669fc84d7a9fa7 (patch)
tree3667bf65cd288ff8fd9cfe348c7900bca6cf61db /mbbsd/edit.c
parentd0f61461d08d843648f9610ec02658ff74acfe91 (diff)
downloadpttbbs-674ab918d3c0a9bb22aec5f2c8669fc84d7a9fa7.tar
pttbbs-674ab918d3c0a9bb22aec5f2c8669fc84d7a9fa7.tar.gz
pttbbs-674ab918d3c0a9bb22aec5f2c8669fc84d7a9fa7.tar.bz2
pttbbs-674ab918d3c0a9bb22aec5f2c8669fc84d7a9fa7.tar.lz
pttbbs-674ab918d3c0a9bb22aec5f2c8669fc84d7a9fa7.tar.xz
pttbbs-674ab918d3c0a9bb22aec5f2c8669fc84d7a9fa7.tar.zst
pttbbs-674ab918d3c0a9bb22aec5f2c8669fc84d7a9fa7.zip
wasting my time
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2891 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/edit.c')
-rw-r--r--mbbsd/edit.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/mbbsd/edit.c b/mbbsd/edit.c
index e50c8ad3..66994c95 100644
--- a/mbbsd/edit.c
+++ b/mbbsd/edit.c
@@ -1269,22 +1269,14 @@ do_quote(void)
while (fgets(buf, 256, inf)) {
insert_char(':');
insert_char(' ');
-#if 0 // def LOW_SECURITY
- insert_string(Ptt_prints(buf, STRIP_ALL));
-#else
quote_strip_ansi_inline(buf);
insert_string(buf);
-#endif
}
else if (op == 'r')
while (fgets(buf, 256, inf)) {
/* repost, keep anything */
-#if 0 // def LOW_SECURITY
- insert_string(Ptt_prints(buf, NO_RELOAD));
-#else
// quote_strip_ansi_inline(buf);
insert_string(buf);
-#endif
}
else {
if (curredit & EDIT_LIST) /* ¥h±¼ mail list ¤§ header */
@@ -1295,12 +1287,8 @@ do_quote(void)
if (!garbage_line(buf)) {
insert_char(':');
insert_char(' ');
-#ifdef LOW_SECURITY
- insert_string(Ptt_prints(buf, STRIP_ALL));
-#else
quote_strip_ansi_inline(buf);
insert_string(buf);
-#endif
}
}
}