##// END OF EJS Templates
rhg: Rename cat_file_is_modified...
Simon Sapin -
r49167:b6d8eea9 default
parent child Browse files
Show More
@@ -227,7 +227,7 b' pub fn run(invocation: &crate::CliInvoca'
227 227 CommandError::from((e, &*format!("{:x}", p1.short())))
228 228 })?;
229 229 for to_check in ds_status.unsure {
230 if cat_file_is_modified(repo, &manifest, &to_check)? {
230 if unsure_is_modified(repo, &manifest, &to_check)? {
231 231 if display_states.modified {
232 232 ds_status.modified.push(to_check);
233 233 }
@@ -304,7 +304,7 b' fn display_status_paths('
304 304 /// to time resolution limits.
305 305 ///
306 306 /// TODO: detect permission bits and similar metadata modifications
307 fn cat_file_is_modified(
307 fn unsure_is_modified(
308 308 repo: &Repo,
309 309 manifest: &Manifest,
310 310 hg_path: &HgPath,
General Comments 0
You need to be logged in to leave comments. Login now