aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2015-09-06 12:52:35 +0000
committerTatsuya Kinoshita <tats@debian.org>2015-09-06 12:54:28 +0000
commita1368c5793cf73525e7e1ff654555b7f69d3078a (patch)
tree0a1033b01238140efc792a57ca2e7b0f983b1723
parentMitigate issue #16 found by @kcwu (diff)
downloadw3m-a1368c5793cf73525e7e1ff654555b7f69d3078a.tar.gz
w3m-a1368c5793cf73525e7e1ff654555b7f69d3078a.zip
Do not use C99-style comments
-rw-r--r--file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/file.c b/file.c
index 8ddbee9..9d1dc9a 100644
--- a/file.c
+++ b/file.c
@@ -26,7 +26,7 @@
#define min(a,b) ((a) > (b) ? (b) : (a))
#endif /* not min */
-#define MAX_INPUT_SIZE 80 // TODO - max should be screen line length
+#define MAX_INPUT_SIZE 80 /* TODO - max should be screen line length */
static int frame_source = 0;
@@ -3788,7 +3788,7 @@ process_button(struct parsed_tag *tag)
qlen = strlen(q);
}
- // Strcat_charp(tmp, "<pre_int>");
+ /* Strcat_charp(tmp, "<pre_int>"); */
Strcat(tmp, Sprintf("<input_alt hseq=\"%d\" fid=\"%d\" type=%s "
"name=\"%s\" value=\"%s\">",
cur_hseq++, cur_form_id, p, html_quote(r), qq));
@@ -3800,7 +3800,7 @@ process_n_button(void)
{
Str tmp = Strnew();
Strcat_charp(tmp, "</input_alt>");
- // Strcat_charp(tmp, "</pre_int>");
+ /* Strcat_charp(tmp, "</pre_int>"); */
return tmp;
}