[Commented On] D11773: rhg: Rename cat_file_is_modified
baymax (Baymax, Your Personal Patch-care Companion)
phabricator at mercurial-scm.org
Fri Nov 26 15:34:17 UTC 2021
baymax added a comment.
baymax updated this revision to Diff 31164.
✅ refresh by Heptapod after a successful CI run (🐙 💚)
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D11773?vs=31151&id=31164
BRANCH
default
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D11773/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D11773
AFFECTED FILES
rust/rhg/src/commands/status.rs
CHANGE DETAILS
diff --git a/rust/rhg/src/commands/status.rs b/rust/rhg/src/commands/status.rs
--- a/rust/rhg/src/commands/status.rs
+++ b/rust/rhg/src/commands/status.rs
@@ -227,7 +227,7 @@
CommandError::from((e, &*format!("{:x}", p1.short())))
})?;
for to_check in ds_status.unsure {
- if cat_file_is_modified(repo, &manifest, &to_check)? {
+ if unsure_is_modified(repo, &manifest, &to_check)? {
if display_states.modified {
ds_status.modified.push(to_check);
}
@@ -304,7 +304,7 @@
/// to time resolution limits.
///
/// TODO: detect permission bits and similar metadata modifications
-fn cat_file_is_modified(
+fn unsure_is_modified(
repo: &Repo,
manifest: &Manifest,
hg_path: &HgPath,
To: SimonSapin, #hg-reviewers, Alphare
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20211126/c7a46f62/attachment-0002.html>
More information about the Mercurial-patches
mailing list