slackline.h: fix typo in include guard - lchat - A line oriented chat front end… | |
git clone git://git.suckless.org/lchat | |
Log | |
Files | |
Refs | |
README | |
--- | |
commit d9d4077f33f59df8579af2866cea73d0664e9add | |
parent 8ce1eb2bb5bac39ed33dd3aace28d40a53878c16 | |
Author: Tom Schwindl <[email protected]> | |
Date: Sun, 15 Jan 2023 01:01:06 +0100 | |
slackline.h: fix typo in include guard | |
Diffstat: | |
M slackline.h | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/slackline.h b/slackline.h | |
@@ -1,5 +1,5 @@ | |
-#ifndef SLACKLIINE_H | |
-#define SLACKLIINE_H | |
+#ifndef SLACKLINE_H | |
+#define SLACKLINE_H | |
enum esc_seq {ESC_NONE, ESC, ESC_BRACKET, ESC_BRACKET_NUM}; | |
enum mode {SL_DEFAULT, SL_EMACS, SL_VI}; |