##// END OF EJS Templates
hg-core: use `u32` instead of `i32` in `Chunk` (D8958#inline-15001 followup)...
hg-core: use `u32` instead of `i32` in `Chunk` (D8958#inline-15001 followup) Differential Revision: https://phab.mercurial-scm.org/D9102

File last commit:

r45570:afecc7f7 default
r46171:d07e4656 default
Show More
exitcode.rs
10 lines | 211 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 not implemented by rhg
pub const UNIMPLEMENTED_COMMAND: ExitCode = 252;