get_* -filter do not require spaces around ||/&&
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
parent
2182bf2713
commit
4146e623d1
|
|
@ -965,8 +965,8 @@ proc get_ports { args } {
|
|||
}
|
||||
|
||||
variable filter_regexp1 {@?([a-zA-Z_]+) *(==|!=|=~) *([0-9a-zA-Z_\*]+)}
|
||||
variable filter_or_regexp "($filter_regexp1) +\\|\\| +($filter_regexp1)"
|
||||
variable filter_and_regexp "($filter_regexp1) +&& +($filter_regexp1)"
|
||||
variable filter_or_regexp "($filter_regexp1) *\\|\\| *($filter_regexp1)"
|
||||
variable filter_and_regexp "($filter_regexp1) *&& *($filter_regexp1)"
|
||||
|
||||
proc filter_ports1 { filter objects } {
|
||||
variable filter_regexp1
|
||||
|
|
|
|||
Loading…
Reference in New Issue