aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--clint-files.txt3
-rw-r--r--src/nvim/CMakeLists.txt1
-rw-r--r--src/nvim/map.h2
-rw-r--r--src/nvim/map_defs.h2
4 files changed, 6 insertions, 2 deletions
diff --git a/clint-files.txt b/clint-files.txt
index d58865bc1d..9518e7cb84 100644
--- a/clint-files.txt
+++ b/clint-files.txt
@@ -2,6 +2,9 @@ src/nvim/indent.c
src/nvim/indent.h
src/nvim/log.c
src/nvim/log.h
+src/nvim/map.c
+src/nvim/map.h
+src/nvim/map_defs.h
src/nvim/os/env.c
src/nvim/os/event.c
src/nvim/os/event_defs.h
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt
index 221019ebe4..d9ec65af86 100644
--- a/src/nvim/CMakeLists.txt
+++ b/src/nvim/CMakeLists.txt
@@ -48,6 +48,7 @@ set(CONV_SRCS
arabic.c
garray.c
memory.c
+ map.c
os/env.c
os/event.c
os/job.c
diff --git a/src/nvim/map.h b/src/nvim/map.h
index 7b4c03ffa0..39536a0c10 100644
--- a/src/nvim/map.h
+++ b/src/nvim/map.h
@@ -53,5 +53,5 @@ void *map_del(Map *map, const char *key);
/// @param cb A function that will be called for each key/value
void map_foreach(Map *map, key_value_cb cb);
-#endif /* NVIM_MAP_H */
+#endif // NVIM_MAP_H
diff --git a/src/nvim/map_defs.h b/src/nvim/map_defs.h
index e56a1461d4..d8203aeba6 100644
--- a/src/nvim/map_defs.h
+++ b/src/nvim/map_defs.h
@@ -10,5 +10,5 @@ typedef struct map Map;
/// @param value A value
typedef void (*key_value_cb)(Map *map, const char *key, void *value);
-#endif /* NVIM_MAP_DEFS_H */
+#endif // NVIM_MAP_DEFS_H