diff options
| author | Ganesh Viswanathan <dev@genotrance.com> | 2018-08-19 17:05:19 -0500 |
|---|---|---|
| committer | Ganesh Viswanathan <dev@genotrance.com> | 2018-08-19 17:05:19 -0500 |
| commit | 02de68b36d10bf92560a2812c06211b5fdbe2343 (patch) | |
| tree | ccc915278f0657794a4824629799993a8351c30d | |
| parent | 1711052eae985e042ab22108f0975d9bb0906abf (diff) | |
| download | nimgen-02de68b36d10bf92560a2812c06211b5fdbe2343.tar.gz nimgen-02de68b36d10bf92560a2812c06211b5fdbe2343.zip | |
Fix nil rope
| -rw-r--r-- | src/nimgen/external.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nimgen/external.nim b/src/nimgen/external.nim index 571c7e0..5abc1c6 100644 --- a/src/nimgen/external.nim +++ b/src/nimgen/external.nim @@ -111,7 +111,7 @@ proc runPreprocess*(file, ppflags, flags: string, inline: bool): string = # Include content only from file var - rdata: Rope + rdata = rope("") start = false sfile = file.sanitizePath |
