This commit is contained in:
parent
359726e070
commit
b62edad33c
1 changed files with 3 additions and 3 deletions
|
@ -49,8 +49,8 @@ BEGIN {
|
||||||
f = ""
|
f = ""
|
||||||
match_alias = 0
|
match_alias = 0
|
||||||
match_command = 0
|
match_command = 0
|
||||||
|
match_module = 0
|
||||||
reset()
|
reset()
|
||||||
module = 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -154,7 +154,7 @@ BEGIN {
|
||||||
} else if (match($0, RE_MODULE, m)) {
|
} else if (match($0, RE_MODULE, m)) {
|
||||||
reset()
|
reset()
|
||||||
if (m[1] == target) {
|
if (m[1] == target) {
|
||||||
module = 1
|
match_module = 1
|
||||||
}
|
}
|
||||||
} else if (match($0, RE_FUNCTION, m)) {
|
} else if (match($0, RE_FUNCTION, m)) {
|
||||||
f = m[1]
|
f = m[1]
|
||||||
|
@ -172,7 +172,7 @@ BEGIN {
|
||||||
reset()
|
reset()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (module) {
|
if (match_module) {
|
||||||
output(target, "module")
|
output(target, "module")
|
||||||
} else {
|
} else {
|
||||||
reset()
|
reset()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue