##// 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 CommandError::from((e, &*format!("{:x}", p1.short())))
227 CommandError::from((e, &*format!("{:x}", p1.short())))
228 })?;
228 })?;
229 for to_check in ds_status.unsure {
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 if display_states.modified {
231 if display_states.modified {
232 ds_status.modified.push(to_check);
232 ds_status.modified.push(to_check);
233 }
233 }
@@ -304,7 +304,7 b' fn display_status_paths('
304 /// to time resolution limits.
304 /// to time resolution limits.
305 ///
305 ///
306 /// TODO: detect permission bits and similar metadata modifications
306 /// TODO: detect permission bits and similar metadata modifications
307 fn cat_file_is_modified(
307 fn unsure_is_modified(
308 repo: &Repo,
308 repo: &Repo,
309 manifest: &Manifest,
309 manifest: &Manifest,
310 hg_path: &HgPath,
310 hg_path: &HgPath,
General Comments 0
You need to be logged in to leave comments. Login now