##// END OF EJS Templates
debugcommands: s/stdin/stdout in debugnodemap help...
debugcommands: s/stdin/stdout in debugnodemap help Differential Revision: https://phab.mercurial-scm.org/D9930

File last commit:

r47174:ca3f73cc default
r47193:3e3b81b6 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;