diff options
author | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-24 23:20:04 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-24 23:20:04 +0200 |
commit | 3e31a3b0ab427146d310fd7fc82d5e27f7735635 (patch) | |
tree | 6bc21a650e59911a6593707e7f95b2c99791e1a0 | |
parent | 24373d42ddc0a04e0b76861b021c5ab576f5de4c (diff) |
MLKLexicalContext#-functionIsInline: When in doubt, return NO.
-rw-r--r-- | MLKLexicalContext.m | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/MLKLexicalContext.m b/MLKLexicalContext.m index d5c6add..1ffa726 100644 --- a/MLKLexicalContext.m +++ b/MLKLexicalContext.m @@ -308,6 +308,8 @@ static MLKLexicalContext *global_context; } rest = [rest cdr]; } + + return NO; } else return (_parent && [_parent functionIsInline:symbol]); } |