summaryrefslogtreecommitdiffstats
path: root/mbbsd/edit.c
diff options
context:
space:
mode:
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
}
}
}