From 94a26f3c9cdb335ec0ae67d4dd56d656309acefb Mon Sep 17 00:00:00 2001 From: Sinh Pham Date: Mon, 7 Sep 2015 00:24:24 -0400 Subject: [PATCH] Fix https://github.com/nrc/rustfmt/issues/278 --- src/comment.rs | 6 +++++- tests/source/struct_lits.rs | 15 +++++++++++++++ tests/target/struct_lits.rs | 15 +++++++++++++++ 3 files changed, 35 insertions(+), 1 deletion(-) diff --git a/src/comment.rs b/src/comment.rs index 0db2aefe013..f1cecd7318b 100644 --- a/src/comment.rs +++ b/src/comment.rs @@ -70,7 +70,11 @@ pub fn rewrite_comment(orig: &str, block_style: bool, width: usize, offset: usiz if line.len() > max_chars { acc.push_str(&rewrite_string(line, &fmt)); } else { - acc.push_str(line); + if line.len() == 0 { + acc.pop(); // Remove space if this is an empty comment. + } else { + acc.push_str(line); + } } (false, acc) diff --git a/tests/source/struct_lits.rs b/tests/source/struct_lits.rs index 8894508fd98..ead7b749d5a 100644 --- a/tests/source/struct_lits.rs +++ b/tests/source/struct_lits.rs @@ -68,3 +68,18 @@ fn issue201() { fn issue201_2() { let s = S{a: S2{ .. c}, .. b}; } + +fn issue278() { + let s = S { + a: 0, + // + b: 0, + }; + let s1 = S { + a: 0, + // foo + // + // bar + b: 0, + }; +} diff --git a/tests/target/struct_lits.rs b/tests/target/struct_lits.rs index 81c60381ed8..b95772d41ec 100644 --- a/tests/target/struct_lits.rs +++ b/tests/target/struct_lits.rs @@ -86,3 +86,18 @@ fn issue201() { fn issue201_2() { let s = S { a: S2 { ..c }, ..b }; } + +fn issue278() { + let s = S { + a: 0, + // + b: 0, + }; + let s1 = S { + a: 0, + // foo + // + // bar + b: 0, + }; +}