From 0a71960d98d83f238ae7dfb60e853f2317cb4ce4 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Sat, 7 Mar 2015 14:50:46 -0800 Subject: [PATCH] Fix #45 --- src/dfmt.d | 6 ++++-- tests/issue0045.d | 6 ++++++ tests/issue0045.d.ref | 9 +++++++++ 3 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 tests/issue0045.d create mode 100644 tests/issue0045.d.ref diff --git a/src/dfmt.d b/src/dfmt.d index 20c414e..2273be8 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -740,8 +740,10 @@ private: { if (current.type == tok!";") { - write("; "); - currentLineLength += 2; + if (!(peekIs(tok!";") || peekIs(tok!")"))) + write("; "); + else + write(";"); index++; continue; } diff --git a/tests/issue0045.d b/tests/issue0045.d new file mode 100644 index 0000000..877e1a8 --- /dev/null +++ b/tests/issue0045.d @@ -0,0 +1,6 @@ +void doStuff() +{ + for (; ; ) { + } + for (size_t i = 0; i < se.len; ){} +} diff --git a/tests/issue0045.d.ref b/tests/issue0045.d.ref new file mode 100644 index 0000000..4183013 --- /dev/null +++ b/tests/issue0045.d.ref @@ -0,0 +1,9 @@ +void doStuff() +{ + for (;;) + { + } + for (size_t i = 0; i < se.len;) + { + } +}