summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/vim.h b/src/vim.h
index 9e4c61db3..667e29029 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -2133,7 +2133,7 @@ typedef enum {
// Flags for assignment functions.
#define LET_IS_CONST 1 // ":const"
#define LET_NO_COMMAND 2 // "var = expr" without ":let" or ":const"
-#define LET_REDEFINE 4 // variable can be redefined later
+#define LET_DISCOVERY 4 // discovery phase: variable can be redefined later
#include "ex_cmds.h" // Ex command defines
#include "spell.h" // spell checking stuff
@@ -2662,4 +2662,8 @@ long elapsed(DWORD start_tick);
#define REPTERM_SPECIAL 4
#define REPTERM_NO_SIMPLIFY 8
+// Flags for expression evaluation.
+#define EVAL_EVALUATE 1 // when missing don't actually evaluate
+#define EVAL_CONSTANT 2 // when not a constant return FAIL
+
#endif // VIM__H