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

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
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 1 additions and 1 deletions

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)?;