diff options
| author | Tatsuya Kinoshita <tats@debian.org> | 2015-09-06 12:52:35 +0000 | 
|---|---|---|
| committer | Tatsuya Kinoshita <tats@debian.org> | 2015-09-06 12:54:28 +0000 | 
| commit | a1368c5793cf73525e7e1ff654555b7f69d3078a (patch) | |
| tree | 0a1033b01238140efc792a57ca2e7b0f983b1723 | |
| parent | Mitigate issue #16 found by @kcwu (diff) | |
| download | w3m-a1368c5793cf73525e7e1ff654555b7f69d3078a.tar.gz w3m-a1368c5793cf73525e7e1ff654555b7f69d3078a.zip | |
Do not use C99-style comments
Diffstat (limited to '')
| -rw-r--r-- | file.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| @@ -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;  } | 
