summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/delta.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/delta.rs b/src/delta.rs
index caed2534..bebf2e16 100644
--- a/src/delta.rs
+++ b/src/delta.rs
@@ -73,7 +73,7 @@ where
if line.starts_with("commit ") {
painter.paint_buffered_lines();
state = State::CommitMeta;
- if !config.commit_style.is_raw {
+ if should_handle(&state, config) {
painter.emit()?;
handle_commit_meta_header_line(&mut painter, &raw_line, config)?;
continue;