pike.git
/
src
/
modules
/
_Roxen
/
roxen.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/_Roxen/roxen.c:309:
*! If true the parser will not parse folded headers. Instead the *! first line of the header will be parsed as normal and any *! subsequent lines ignored (or casue an exception if throw_errors *! is set). */ { INT_TYPE throw_errors = 0; INT_TYPE keep_case = 0; INT_TYPE no_fold = 0; get_all_args("create",args,".%i%i%i", &throw_errors, &keep_case, &no_fold);
+
pop_n_elems(args);
if (THP->headers) { free(THP->headers); THP->headers = NULL; } THP->mode = 0; if(throw_errors) THP->mode |= FLAG_THROW_ERROR; if(keep_case) THP->mode |= FLAG_KEEP_CASE; if(no_fold) THP->mode |= FLAG_NO_FOLD;