diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-13 01:36:11 +0200 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-15 20:46:02 +0200 |
commit | 5f795225dcf735096c54057a3b5eb08484c02c8b (patch) | |
tree | 277c9385401852b0649ee9cfc4bafc759cf65c5a /src/nvim/map.h | |
parent | 71c79b5b7096427f26ac4c4b60244b503efc4b1b (diff) | |
download | rneovim-5f795225dcf735096c54057a3b5eb08484c02c8b.tar.gz rneovim-5f795225dcf735096c54057a3b5eb08484c02c8b.tar.bz2 rneovim-5f795225dcf735096c54057a3b5eb08484c02c8b.zip |
Introduce nvim namespace: Fix define guards.
Change define guards from NEOVIM_XXX_H to NVIM_XXX_H:
- Change header files.
- Change clint correct guard name calculation.
Diffstat (limited to 'src/nvim/map.h')
-rw-r--r-- | src/nvim/map.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/map.h b/src/nvim/map.h index 32dde0fad2..7b4c03ffa0 100644 --- a/src/nvim/map.h +++ b/src/nvim/map.h @@ -1,6 +1,6 @@ // General-purpose string->pointer associative array with a simple API -#ifndef NEOVIM_MAP_H -#define NEOVIM_MAP_H +#ifndef NVIM_MAP_H +#define NVIM_MAP_H #include <stdbool.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 /* NEOVIM_MAP_H */ +#endif /* NVIM_MAP_H */ |