diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-05-08 11:31:00 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-05-08 11:31:00 -0700 |
commit | b8231a8eca63e887247c8070f59b8d9e6cbd669c (patch) | |
tree | d1b0e7e9b7c8e118f5a6477acc11f65301defd35 | |
parent | 83fb9d549542b12c14e48cda3a8ce4809466386c (diff) | |
download | pandoc-b8231a8eca63e887247c8070f59b8d9e6cbd669c.tar.gz |
Fixed bug in uriPathToPath for Windows.
-rw-r--r-- | src/Text/Pandoc/Shared.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Shared.hs b/src/Text/Pandoc/Shared.hs index 82ac32980..26b01bc90 100644 --- a/src/Text/Pandoc/Shared.hs +++ b/src/Text/Pandoc/Shared.hs @@ -644,7 +644,7 @@ uriPathToPath path = #ifdef _WINDOWS case path of '/':ps -> ps - _ -> p + ps -> ps #else path #endif |