Parent Directory
|
Revision Log
|
Patch
revision 214 by siliconforks, Fri Oct 3 02:25:47 2008 UTC | revision 215 by siliconforks, Fri Oct 3 02:26:18 2008 UTC | |
---|---|---|
# | Line 115 | Line 115 |
115 | case '>': | case '>': |
116 | Stream_write_string(g_output, ">"); | Stream_write_string(g_output, ">"); |
117 | break; | break; |
118 | case '\t': | |
119 | case '\n': | case '\n': |
120 | Stream_write_char(g_output, c); | Stream_write_char(g_output, c); |
121 | break; | break; |
122 | default: | default: |
123 | if (c == '\t' || (32 <= c && c <= 126)) { | if (32 <= c && c <= 126) { |
124 | Stream_write_char(g_output, c); | Stream_write_char(g_output, c); |
125 | } | } |
126 | else { | else { |
|
ViewVC Help | |
Powered by ViewVC 1.1.24 |