diff options
author | Guillermo Ramos | 2014-06-29 01:43:01 +0200 |
---|---|---|
committer | Guillermo Ramos | 2014-06-29 01:43:01 +0200 |
commit | ea21a71e77e46e56f3dbd59b9bf8700d9040a70d (patch) | |
tree | a1c73c8aa4eaa21540cb924d92f5f616d1f0771c /maps/maps.h | |
parent | 20faeb55d16bdb78c5f85ec52737816d7d9aa629 (diff) | |
download | evspy-ea21a71e77e46e56f3dbd59b9bf8700d9040a70d.tar.gz |
Tabs -> spaces
Diffstat (limited to 'maps/maps.h')
-rw-r--r-- | maps/maps.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/maps/maps.h b/maps/maps.h index 969dc6f..c78851c 100644 --- a/maps/maps.h +++ b/maps/maps.h @@ -15,7 +15,7 @@ * previous function). * * For example, - * EVS_SHIFT(KEY_7, "/"); + * EVS_SHIFT(KEY_7, "/"); * associates the key of number 7 to the slash character when shift is pressed. * Yeah, the character associated is a string: this is because of the map (kmap) * implementation, [int -> (void *)]. @@ -39,11 +39,12 @@ // Load the map associated with the given keyboard layout #ifndef EVS_KLAY -#include "map_es.h" // default layout +# include "map_es.h" // default layout #elif EVS_KLAY == EVS_KLAY_EN -#include "map_en.h" +# include "map_en.h" #elif EVS_KLAY == EVS_KLAY_ES -#include "map_es.h" -#endif // EVS_KLAY +# include "map_es.h" +#endif // EVS_KLAY -#endif // __EVS_MAPS + +#endif // __EVS_MAPS |