aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/highlight.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/highlight.h')
-rw-r--r--src/nvim/highlight.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/nvim/highlight.h b/src/nvim/highlight.h
index fc311b4269..9c3a07d7ab 100644
--- a/src/nvim/highlight.h
+++ b/src/nvim/highlight.h
@@ -1,5 +1,4 @@
-#ifndef NVIM_HIGHLIGHT_H
-#define NVIM_HIGHLIGHT_H
+#pragma once
#include <stdbool.h>
@@ -31,5 +30,3 @@ static inline int win_hl_attr(win_T *wp, int hlf)
rgb_bg = rgb_bg != -1 ? rgb_bg : (dark_ ? 0x000000 : 0xFFFFFF); \
rgb_sp = rgb_sp != -1 ? rgb_sp : 0xFF0000; \
} while (0);
-
-#endif // NVIM_HIGHLIGHT_H