mawk/doc
This commit is contained in:
parent
a500200be0
commit
61f19f0025
1 changed files with 5 additions and 5 deletions
|
@ -194,14 +194,14 @@ BEGIN {
|
|||
reset()
|
||||
}
|
||||
# others
|
||||
} else if (match($0, RE_MODULE, m)) {
|
||||
} else if (match($0, RE_MODULE)) {
|
||||
reset()
|
||||
if (m[1] == target) {
|
||||
if (extract($0, "module") == target) {
|
||||
match_module = 1
|
||||
}
|
||||
} else if (match($0, re["function"], m)) {
|
||||
f = m[1]
|
||||
} else if (match($0, RE_CLOSE, m)) {
|
||||
} else if (match($0, re["function"])) {
|
||||
f = extract($0, "function")
|
||||
} else if (match($0, RE_CLOSE)) {
|
||||
if (match_alias) {
|
||||
print "= " target
|
||||
output(f, "function")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue