aboutsummaryrefslogtreecommitdiffstats
path: root/func.go
diff options
context:
space:
mode:
Diffstat (limited to 'func.go')
-rw-r--r--func.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/func.go b/func.go
index 121cfa6..46de333 100644
--- a/func.go
+++ b/func.go
@@ -886,7 +886,7 @@ func (f *funcEval) Eval(w io.Writer, ev *Evaluator) {
f.args[1].Eval(abuf, ev)
s := abuf.Bytes()
Logf("eval %q at %s:%d", s, ev.filename, ev.lineno)
- mk, err := ParseMakefileBytes(s, ev.filename, ev.lineno)
+ mk, err := parseMakefileBytes(s, ev.filename, ev.lineno)
if err != nil {
panic(err)
}