Add a script to check all sample org-mode documents with the compare program.

This commit is contained in:
Tom Alexander
2023-04-12 15:03:14 -04:00
parent 1a38ca43d6
commit 9efc291d28
2 changed files with 28 additions and 1 deletions

View File

@@ -57,7 +57,7 @@ impl DiffResult {
pub fn is_bad(&self) -> bool {
match self.status {
DiffStatus::Good => !self.has_bad_children(),
DiffStatus::Good => self.has_bad_children(),
DiffStatus::Bad => true,
}
}