From 8a7d6542b33e5d2b352262305c3bfdb2d14e1cf8 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 26 Jan 2020 15:56:19 +0100 Subject: patch 8.2.0149: maintaining a Vim9 branch separately is more work Problem: Maintaining a Vim9 branch separately is more work. Solution: Merge the Vim9 script changes. --- src/vim.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/vim.h') diff --git a/src/vim.h b/src/vim.h index 7ad55aa24..9402c4ecf 100644 --- a/src/vim.h +++ b/src/vim.h @@ -2151,6 +2151,10 @@ typedef enum { USEPOPUP_HIDDEN // use info popup initially hidden } use_popup_T; +// Flags for assignment functions. +#define LET_IS_CONST 1 // ":const" +#define LET_NO_COMMAND 2 // "var = expr" without ":let" or ":const" + #include "ex_cmds.h" // Ex command defines #include "spell.h" // spell checking stuff -- cgit v1.2.1