51b3e20ebc
Instead of writing `}; # if', write just `}' as was discussed here: http://www.mail-archive.com/bash-completion-devel@lists.alioth.debian.org/msg01815.html
23 lines
207 B
Plaintext
23 lines
207 B
Plaintext
proc setup {} {
|
|
save_env
|
|
}
|
|
|
|
|
|
proc teardown {} {
|
|
assert_env_unmodified
|
|
}
|
|
|
|
|
|
setup
|
|
|
|
|
|
if {[assert_exec {sed --help} "" "" "unsupported"]} {
|
|
assert_complete_any "sed --"
|
|
}
|
|
|
|
|
|
sync_after_int
|
|
|
|
|
|
teardown
|