summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/globals.h b/src/globals.h
index 39ef83e495..dcb0f63243 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -290,6 +290,14 @@ EXTERN garray_T exestack INIT5(0, 0, sizeof(estack_T), 50, NULL);
// line number in the message source or zero
#define SOURCING_LNUM (((estack_T *)exestack.ga_data)[exestack.ga_len - 1].es_lnum)
+// Script CTX being sourced or was sourced to define the current function.
+EXTERN sctx_T current_sctx
+#ifdef FEAT_EVAL
+ INIT4(0, 0, 0, 0);
+#else
+ INIT(= {0});
+#endif
+
#ifdef FEAT_EVAL
// whether inside compile_def_function()
EXTERN int estack_compiling INIT(= FALSE);
@@ -392,9 +400,6 @@ EXTERN int may_garbage_collect INIT(= FALSE);
EXTERN int want_garbage_collect INIT(= FALSE);
EXTERN int garbage_collect_at_exit INIT(= FALSE);
-// Script CTX being sourced or was sourced to define the current function.
-EXTERN sctx_T current_sctx INIT4(0, 0, 0, 0);
-
// Commonly used types.
EXTERN type_T t_unknown INIT6(VAR_UNKNOWN, 0, 0, TTFLAG_STATIC, NULL, NULL);