mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
more matching (eq)
This commit is contained in:
parent
cbeb0b26e4
commit
96e0eb83dd
1 changed files with 12 additions and 2 deletions
|
@ -1315,8 +1315,18 @@ wsetpid(Window *w, int pid, int dolabel)
|
|||
}
|
||||
}
|
||||
|
||||
static Rune left1[] = { '{', '[', '(', '<', 0xAB, 0 };
|
||||
static Rune right1[] = { '}', ']', ')', '>', 0xBB, 0 };
|
||||
static Rune left1[] = {
|
||||
'{', '[', '(', '<', 0xAB,
|
||||
0x207d, 0x2329, 0x27e6, 0x27e8, 0x27ea,
|
||||
0xfe59, 0xfe5b, 0xfe5d, 0xff08, 0xff3b, 0xff5b,
|
||||
0
|
||||
};
|
||||
static Rune right1[] = {
|
||||
'}', ']', ')', '>', 0xBB,
|
||||
0x207e, 0x232a, 0x27e7, 0x27e9, 0x27eb,
|
||||
0xfe5a, 0xfe5c, 0xfe5e, 0xff09, 0xff3d, 0xff5d,
|
||||
0
|
||||
};
|
||||
static Rune left2[] = { '\n', 0 };
|
||||
static Rune left3[] = { '\'', '"', '`', 0 };
|
||||
|
||||
|
|
Loading…
Reference in a new issue