Handle escaping the characters in org macro arguments.

This commit is contained in:
Tom Alexander
2023-10-08 15:54:56 -04:00
parent a32cea8139
commit a6adeee40b
3 changed files with 155 additions and 2 deletions

View File

@@ -149,8 +149,8 @@ pub(crate) fn compare_property_list_of_quoted_string<
if e != r {
let this_status = DiffStatus::Bad;
let message = Some(format!(
"{} mismatch (emacs != rust) {:?} != {:?}",
emacs_field, value, rust_value
"{} mismatch (emacs != rust) {:?} != {:?}. Full list: {:?} != {:?}",
emacs_field, e, r, value, rust_value
));
return Ok(Some((this_status, message)));
}