Add dummy values for new fields for plaintext.

This commit is contained in:
Tom Alexander 2023-12-15 19:54:03 -05:00
parent 4b94dc60d2
commit e24fcb9ded
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 4 additions and 2 deletions

View File

@ -1014,11 +1014,13 @@ impl<'s> StandardProperties<'s> for PlainText<'s> {
}
fn get_contents<'b>(&'b self) -> Option<&'s str> {
todo!()
// This field does not actually exist in emacs for plaintext
Some(self.source)
}
fn get_post_blank(&self) -> PostBlank {
todo!()
// This field does not actually exist in emacs for plaintext
0
}
}