summaryrefslogtreecommitdiffstats
path: root/src/delta.rs
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-05-29 18:45:27 -0400
committerDan Davison <dandavison7@gmail.com>2020-05-29 18:45:27 -0400
commit3fcc6b612a60c71632e2650e775e2de60c0bbd8d (patch)
tree5b80300e1329d3eb87d84c5e91d1d1b7d2049e9d /src/delta.rs
parent616dd39ae070c3dcb83e08fdffa1814897d24a9f (diff)
Remove distracting comment about edge case bug
Diffstat (limited to 'src/delta.rs')
-rw-r--r--src/delta.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/delta.rs b/src/delta.rs
index 29238e6f..e8dbb97f 100644
--- a/src/delta.rs
+++ b/src/delta.rs
@@ -83,8 +83,6 @@ where
painter.paint_buffered_lines();
state = State::FileMeta;
} else if (state == State::FileMeta || source == Source::DiffUnified)
- // FIXME: For unified diff input, removal ("-") of a line starting with "--" (e.g. a
- // Haskell or SQL comment) will be confused with the "---" file metadata marker.
&& (line.starts_with("--- ") || line.starts_with("rename from "))
&& config.file_style.decoration_style.is_some()
{