Consume trailing whitespace for property drawers.
Some checks failed
rust-build Build rust-build has failed
rust-test Build rust-test has failed

This is a change between the org-mode in emacs 29.1 and the org-mode currently in main.
This commit is contained in:
Tom Alexander
2023-08-14 11:57:12 -04:00
parent 00354ccc20
commit cc83431d62

View File

@@ -160,7 +160,7 @@ fn zeroth_section<'r, 's>(context: Context<'r, 's>, input: &'s str) -> Res<&'s s
opt(parser_with_context!(comment)(
&without_consuming_whitespace_context,
)),
parser_with_context!(property_drawer)(&without_consuming_whitespace_context),
parser_with_context!(property_drawer)(context),
many0(blank_line),
)))(input)?;