From cf9876f56554e791cdf5a280c6939e6d39b5075d Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Tue, 13 Jan 2015 23:47:40 -0800 Subject: [PATCH] No spaces after 'this' if followed by '.' --- src/dfmt.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dfmt.d b/src/dfmt.d index e04f0b8..71944ae 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -175,7 +175,7 @@ private: auto next = tokens[index + 1]; if (next.type == tok!";" || next.type == tok!"(" || next.type == tok!")" || next.type == tok!"," - || next.type == tok!"{") + || next.type == tok!"{" || next.type == tok!".") { writeToken(); }