Skip to content

Commit

Permalink
Merge pull request #198 from Jarcho/fix_aux
Browse files Browse the repository at this point in the history
Use default comments when building auxiliary files
  • Loading branch information
oli-obk authored Feb 14, 2024
2 parents 54c3b89 + f212936 commit 17c82d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ fn build_aux(
stderr: err.to_string().into_bytes(),
stdout: vec![],
})?;
let comments = parse_comments(&file_contents, Comments::default(), aux_file)?;
let comments = parse_comments(&file_contents, config.comment_defaults.clone(), aux_file)?;
assert_eq!(
comments.revisions, None,
"aux builds cannot specify revisions"
Expand Down

0 comments on commit 17c82d9

Please sign in to comment.