summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gd_editor.cpp
diff options
context:
space:
mode:
authorAnton Yabchinskiy <arn@bestmx.ru>2015-01-14 23:17:15 +0300
committerAnton Yabchinskiy <arn@bestmx.ru>2015-01-14 23:17:15 +0300
commitd6998995b54fd4fed83eef9db3bbb45fa60565db (patch)
tree927e4e2441db1c62b3853d03f3ed4bb996881045 /modules/gdscript/gd_editor.cpp
parentb6c5cb1064eab63788060dc918d7fec53e57a532 (diff)
parent04af74596d070f062bd917b0364d87c57544f8d5 (diff)
downloadredot-engine-d6998995b54fd4fed83eef9db3bbb45fa60565db.tar.gz
Merge branch 'master' of github.com:okamstudio/godot
Conflicts: platform/x11/detect.py
Diffstat (limited to 'modules/gdscript/gd_editor.cpp')
-rw-r--r--modules/gdscript/gd_editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_editor.cpp b/modules/gdscript/gd_editor.cpp
index 12dc1bb139..20cd09efd0 100644
--- a/modules/gdscript/gd_editor.cpp
+++ b/modules/gdscript/gd_editor.cpp
@@ -1661,7 +1661,7 @@ Error GDScriptLanguage::complete_code(const String& p_code, const String& p_base
//print_line( p_code.replace(String::chr(0xFFFF),"<cursor>"));
GDParser p;
- Error err = p.parse(p_code,p_base_path);
+ Error err = p.parse(p_code,p_base_path,true);
bool isfunction=false;
Set<String> options;