aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/runtime.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/runtime.h')
-rw-r--r--src/nvim/runtime.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/nvim/runtime.h b/src/nvim/runtime.h
index a780abb8b1..6f9f31c9c4 100644
--- a/src/nvim/runtime.h
+++ b/src/nvim/runtime.h
@@ -8,20 +8,20 @@
#include "nvim/ex_cmds_defs.h"
#include "nvim/ex_eval_defs.h"
-/// Entry in the execution stack "exestack".
typedef enum {
- ETYPE_TOP, // toplevel
- ETYPE_SCRIPT, // sourcing script, use es_info.sctx
- ETYPE_UFUNC, // user function, use es_info.ufunc
- ETYPE_AUCMD, // autocomand, use es_info.aucmd
- ETYPE_MODELINE, // modeline, use es_info.sctx
- ETYPE_EXCEPT, // exception, use es_info.exception
- ETYPE_ARGS, // command line argument
- ETYPE_ENV, // environment variable
- ETYPE_INTERNAL, // internal operation
- ETYPE_SPELL, // loading spell file
+ ETYPE_TOP, ///< toplevel
+ ETYPE_SCRIPT, ///< sourcing script, use es_info.sctx
+ ETYPE_UFUNC, ///< user function, use es_info.ufunc
+ ETYPE_AUCMD, ///< autocomand, use es_info.aucmd
+ ETYPE_MODELINE, ///< modeline, use es_info.sctx
+ ETYPE_EXCEPT, ///< exception, use es_info.exception
+ ETYPE_ARGS, ///< command line argument
+ ETYPE_ENV, ///< environment variable
+ ETYPE_INTERNAL, ///< internal operation
+ ETYPE_SPELL, ///< loading spell file
} etype_T;
+/// Entry in the execution stack "exestack".
typedef struct {
linenr_T es_lnum; ///< replaces "sourcing_lnum"
char *es_name; ///< replaces "sourcing_name"