# HG changeset patch # User Arseniy Alekseyev # Date 1663769669 14400 # Node ID 3854eb90629b794bac4d5da93b8a67ba41317cd3 # Parent e84064e88e5ddc0e4a62f6950768f15bbedef562 rhg: enable in case ui.statuscopies=True rhg already has code to support ui.statuscopies, but it's disabled, for seemingly no good reason. diff -r e84064e88e5d -r 3854eb90629b rust/rhg/src/commands/status.rs --- a/rust/rhg/src/commands/status.rs Thu Sep 22 18:44:28 2022 -0400 +++ b/rust/rhg/src/commands/status.rs Wed Sep 21 10:14:29 2022 -0400 @@ -185,11 +185,6 @@ pub fn run(invocation: &crate::CliInvocation) -> Result<(), CommandError> { // TODO: lift these limitations - if invocation.config.get_bool(b"ui", b"statuscopies")? { - return Err(CommandError::unsupported( - "ui.statuscopies is not yet supported with rhg status", - )); - } if invocation .config .get(b"commands", b"status.terse")