summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gd_editor.cpp
diff options
context:
space:
mode:
authorhurikhan <m4r10.5ch14ck@gmail.com>2015-01-14 13:31:16 +0800
committerhurikhan <m4r10.5ch14ck@gmail.com>2015-01-14 13:31:16 +0800
commit8a30feebbe676ab922515b58d0deec2f95aa104c (patch)
tree55a208d7835022f6b876b4e45d5a482fbd4bd83f /modules/gdscript/gd_editor.cpp
parent2203ba5fe3f7cdca078dd557ec532b7f335d3670 (diff)
parent9012cd408e240d6039120e56fdd47a0983890993 (diff)
downloadredot-engine-8a30feebbe676ab922515b58d0deec2f95aa104c.tar.gz
Merge remote-tracking branch 'upstream/master' into x11-window-management
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;