summaryrefslogtreecommitdiffstats
path: root/src/Make_vms.mms
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-06-01 14:34:43 +0200
committerBram Moolenaar <Bram@vim.org>2020-06-01 14:34:43 +0200
commitf15c8b6eb32fcfea88fd9ca42ef87bbee2c8fe2b (patch)
treefe9bdaf8696ae70727a6a9b6c7b7693a2bbd7d75 /src/Make_vms.mms
parentf17e7ea67a798d0aa45ce24ea80c9e21d5164326 (diff)
patch 8.2.0872: XIM code is mixed with multi-byte codev8.2.0872
Problem: XIM code is mixed with multi-byte code. Solution: Move the XIM code to a separate file. (Yegappan Lakshmanan, closes #6177)
Diffstat (limited to 'src/Make_vms.mms')
-rw-r--r--src/Make_vms.mms6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Make_vms.mms b/src/Make_vms.mms
index e5ff857518..1194acdd43 100644
--- a/src/Make_vms.mms
+++ b/src/Make_vms.mms
@@ -334,6 +334,7 @@ SRC = \
findfile.c \
fold.c \
getchar.c \
+ gui_xim.c \
hardcopy.c \
hashtab.c \
highlight.c \
@@ -445,6 +446,7 @@ OBJ = \
findfile.obj \
fold.obj \
getchar.obj \
+ gui_xim.obj \
hardcopy.obj \
hashtab.obj \
highlight.obj \
@@ -818,6 +820,10 @@ getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h term.h macros.h structs.h regexp.h \
gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
globals.h
+gui_xim.obj : gui_xim.c vim.h [.auto]config.h feature.h os_unix.h \
+ ascii.h keymap.h term.h macros.h structs.h regexp.h \
+ gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
+ globals.h
hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h term.h macros.h structs.h regexp.h \
gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \