0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 9.0.1452: code using EVAL_CONSTANT is dead, it is never set

Problem:    Code using EVAL_CONSTANT is dead, it is never set.
Solution:   Remove EVAL_CONSTANT. (closes #12252)
This commit is contained in:
zeertzjq
2023-04-13 22:12:50 +01:00
committed by Bram Moolenaar
parent aa7f25ebf1
commit b7f6f93475
3 changed files with 8 additions and 11 deletions

View File

@@ -2102,9 +2102,8 @@ typedef struct {
char_u *eval_tofree_lambda;
} evalarg_T;
// Flags for expression evaluation.
// Flag for expression evaluation.
#define EVAL_EVALUATE 1 // when missing don't actually evaluate
#define EVAL_CONSTANT 2 // when not a constant return FAIL
# ifdef FEAT_PROFILE
/*