Do not print the parsed sexp.

These were particularly spammy.
This commit is contained in:
Tom Alexander 2023-04-11 19:51:20 -04:00
parent 52df376553
commit a456acd1e9
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 0 additions and 1 deletions

View File

@ -17,7 +17,6 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let org_sexp = emacs_parse_org_document(&org_path)?;
println!("{}", org_sexp);
let (_remaining, parsed_sexp) = sexp(org_sexp.as_str()).expect("Sexp Parse failure");
println!("{:#?}", parsed_sexp);
let (_remaining, rust_parsed) = document(org_contents.as_str()).expect("Org Parse failure");
println!("{:#?}", rust_parsed);
let diff_result = compare_document(&parsed_sexp, &rust_parsed)?;