##// END OF EJS Templates
hgignore: add escape syntax test for glob patterns...
hgignore: add escape syntax test for glob patterns The last example, [\#], is what the rust implementation fails to parse. The other escapes can be removed by regexp engine or _globre().

File last commit:

r40154:cd490ac9 default
r42856:f78f3054 default
Show More
build.rs
9 lines | 173 B | application/rls-services+xml | RustLexer
extern crate cc;
fn main() {
cc::Build::new()
.warnings(true)
.file("src/sendfds.c")
.file("src/sighandlers.c")
.compile("procutil");
}