summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-01-26 20:36:56 +0000
committerBram Moolenaar <Bram@vim.org>2023-01-26 20:36:56 +0000
commit53f54e49b7152e93d09ff77406f7eb63b3b5f732 (patch)
tree81941465faecbd5e0a7f371d3e38da891c924309 /src/ex_cmds.h
parent870219c58c0804bdc55419b2e455c06ac715a835 (diff)
patch 9.0.1248: cannot export an interfacev9.0.1248
Problem: Cannot export an interface. (Ernie Rael) Solution: Add the EX_EXPORT flag to :interface. (closes #11884)
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r--src/ex_cmds.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index 8f8efe7cc8..7e127221d7 100644
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -758,7 +758,7 @@ EXCMD(CMD_intro, "intro", ex_intro,
EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK,
ADDR_NONE),
EXCMD(CMD_interface, "interface", ex_class,
- EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK,
+ EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_EXPORT,
ADDR_NONE),
EXCMD(CMD_isearch, "isearch", ex_findpat,
EX_BANG|EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK,