1
0
forked from aniani/vim

patch 8.2.1269: language and locale code spread out

Problem:    Language and locale code spread out.
Solution:   Move relevant code to src/locale.c. (Yegappan Lakshmanan,
            closes #6509)
This commit is contained in:
Bram Moolenaar
2020-07-22 19:11:19 +02:00
parent e7e4838f25
commit 054f14bbe5
14 changed files with 601 additions and 561 deletions

View File

@@ -345,6 +345,7 @@ SRC = \
insexpand.c \
json.c \
list.c \
locale.c \
main.c \
map.c \
mark.c \
@@ -460,6 +461,7 @@ OBJ = \
insexpand.obj \
json.obj \
list.obj \
locale.obj \
main.obj \
map.obj \
mark.obj \
@@ -865,6 +867,10 @@ list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
globals.h
locale.obj : locale.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
globals.h
main.obj : main.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 \