Rollup merge of #38422 - zackmdavis:enjoy_tidy_path_error_macro_nicety, r=bluss

tidy features: use 2-parameter form of internal try macro for open err

This tiny patch merely applies @bluss's suggestion for how to get a more
informative error message when the feature check can't open a file, a
matter that had briefly annoyed the present author, leading to the
filing of #38417.

Resolves #38417.
This commit is contained in:
Seo Sanghyeon 2016-12-19 16:59:40 +09:00 committed by GitHub
commit 813af34c92

View File

@ -67,7 +67,7 @@ pub fn check(path: &Path, bad: &mut bool) {
}
contents.truncate(0);
t!(t!(File::open(file)).read_to_string(&mut contents));
t!(t!(File::open(&file), &file).read_to_string(&mut contents));
for (i, line) in contents.lines().enumerate() {
let mut err = |msg: &str| {