Skip to content

Commit 46f96b8

Browse files
committed
Issue #468 - fix gnu-emacs output
1 parent fd0ccb2 commit 46f96b8

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)