|
a/src/httpfs.cxx |
|
b/src/httpfs.cxx |
|
... |
|
... |
223 |
// must be processed. This happens if the last line before
|
223 |
// must be processed. This happens if the last line before
|
224 |
// eof ends with a backslash, or there is no final \n
|
224 |
// eof ends with a backslash, or there is no final \n
|
225 |
eof = true;
|
225 |
eof = true;
|
226 |
}
|
226 |
}
|
227 |
trimstring(line, " \t\n\r");
|
227 |
trimstring(line, " \t\n\r");
|
|
|
228 |
if (line[line.size()-1] != ',') {
|
|
|
229 |
line += ",";
|
|
|
230 |
}
|
228 |
if (enableL16 && line[0] == '@') {
|
231 |
if (enableL16 && line[0] == '@') {
|
229 |
line = regsub1("@ENABLEL16@", line, "");
|
232 |
line = regsub1("@ENABLEL16@", line, "");
|
230 |
} else {
|
233 |
} else {
|
231 |
line = regsub1("@ENABLEL16@", line, "#");
|
234 |
line = regsub1("@ENABLEL16@", line, "#");
|
232 |
}
|
235 |
}
|