Skip to content

Commit 27fe054

Browse files
committed
Issue #468 - config.c - use RAW encoding for all cases
1 parent b97b2f0 commit 27fe054

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ Bool TY_(ParseConfigValue)( TidyDocImpl* doc, TidyOptionId optId, ctmbstr optval
934934
if (optId == TidyOutFile)
935935
doc->config.cfgIn = TY_(BufferInput)( doc, &inbuf, RAW );
936936
else
937-
doc->config.cfgIn = TY_(BufferInput)( doc, &inbuf, ASCII );
937+
doc->config.cfgIn = TY_(BufferInput)( doc, &inbuf, RAW ); /* Issue #468 - Was ASCII! */
938938
doc->config.c = GetC( &doc->config );
939939

940940
status = option->parser( doc, option );

0 commit comments

Comments
 (0)