Fix handling of start of line in OrgSource.
All checks were successful
rust-test Build rust-test has succeeded
rust-build Build rust-build has succeeded

This commit is contained in:
Tom Alexander
2023-08-24 17:23:16 -04:00
parent e84e2b5147
commit 32071ce74d
2 changed files with 18 additions and 19 deletions

View File

@@ -156,7 +156,7 @@ fn body<'r, 's>(
let span = span!(
tracing::Level::DEBUG,
"outside end body",
remaining = remaining
remaining = Into::<&str>::into(remaining)
);
#[cfg(feature = "tracing")]
let _enter = span.enter();
@@ -193,7 +193,7 @@ fn body_end<'r, 's>(
let span = span!(
tracing::Level::DEBUG,
"inside end body",
remaining = input,
remaining = Into::<&str>::into(input),
current_depth = current_depth
);
#[cfg(feature = "tracing")]