Skip to content

Commit

Permalink
Workaround for ampersands in INSTALL-WIN32.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bufflig committed Dec 7, 2010
1 parent ada2a05 commit cee3367
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions make/emd2exml.in
Expand Up @@ -381,6 +381,8 @@ put_text(S, [$>|Cs], CTag, EmTag, Acc) when CTag /= no ->
put_text(S, Cs, CTag, EmTag, [">"|Acc]);
put_text(S, [$&|Cs], CTag, EmTag, Acc) when CTag /= no ->
put_text(S, Cs, CTag, EmTag, ["&"|Acc]);
put_text(S, [$&, $ |Cs], CTag, EmTag, Acc) -> %Workaround for INSTALL-WIN32.md
put_text(S, Cs, CTag, EmTag, ["& "|Acc]);
put_text(S, [$'|Cs], CTag, EmTag, Acc)when CTag /= no ->
put_text(S, Cs, CTag, EmTag, ["'"|Acc]);
put_text(S, [$<|Cs], no, EmTag, Acc) ->
Expand Down

0 comments on commit cee3367

Please sign in to comment.