From d6ec944e5f3a6f4a43817715cf7d4142121f58a4 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 16 Dec 2012 12:01:12 +0900 Subject: [PATCH] Set a builtin methods func pointer. Forgetting to set the func pointer is what caused the bogus "does not respond to" message for -error:. --- tools/qfcc/source/qc-parse.y | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/qfcc/source/qc-parse.y b/tools/qfcc/source/qc-parse.y index 9c2f3fbf2..fd423ae5c 100644 --- a/tools/qfcc/source/qc-parse.y +++ b/tools/qfcc/source/qc-parse.y @@ -1635,6 +1635,7 @@ methoddef method = class_find_method (current_class, method); sym = method_symbol (current_class, method); build_builtin_function (sym, $5, 1); + method->func = sym->s.func; method->def = sym->s.func->def; } ;