mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
echo: reorder of match patterns
People write \n \t and \r \v much more often than other escape sequences, so it makes more sense to optimise for common case, as match scans from top to bottom.
This commit is contained in:
+4
-4
@@ -105,15 +105,15 @@ pub fn uumain(args: Vec<String>) -> i32 {
|
||||
prev_was_slash = false;
|
||||
match c {
|
||||
'\\' => print!("\\"),
|
||||
'n' => print!("\n"),
|
||||
'r' => print!("\r"),
|
||||
't' => print!("\t"),
|
||||
'v' => print!("\x0B"),
|
||||
'a' => print!("\x07"),
|
||||
'b' => print!("\x08"),
|
||||
'c' => break,
|
||||
'e' => print!("\x1B"),
|
||||
'f' => print!("\x0C"),
|
||||
'n' => print!("\n"),
|
||||
'r' => print!("\r"),
|
||||
't' => print!("\t"),
|
||||
'v' => print!("\x0B"),
|
||||
'x' => {
|
||||
let (c, num_char_used) = convert_str(string.as_bytes(), index + 1, 16);
|
||||
if num_char_used == 0 {
|
||||
|
||||
Reference in New Issue
Block a user