##// END OF EJS Templates
rhg: Fall back to Python if unsupported extensions are enabled...
rhg: Fall back to Python if unsupported extensions are enabled Extensions might affect behavior in ways we can’t anticipate, so just ignoring them is not correct. Later we’ll add opt-in configuration to ignore specific extensions. Differential Revision: https://phab.mercurial-scm.org/D10112

File last commit:

r47174:ca3f73cc default
r47467:1bac7764 default
Show More
exitcode.rs
10 lines | 214 B | application/rls-services+xml | RustLexer
pub type ExitCode = i32;
/// Successful exit
pub const OK: ExitCode = 0;
/// Generic abort
pub const ABORT: ExitCode = 255;
/// Command or feature not implemented by rhg
pub const UNIMPLEMENTED: ExitCode = 252;