aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2015-11-14 17:33:45 -0500
committerMichael Reed <m.reed@mykolab.com>2015-11-14 17:33:49 -0500
commitbe72048a8ee5110efd8f629663ceac7f5a4c421d (patch)
tree0316916f0c822c1b88daa17d6cc340c4385fce84 /src
parent46cb0ffc91b977312f9ea2a8603bc52354d4cac9 (diff)
downloadrneovim-be72048a8ee5110efd8f629663ceac7f5a4c421d.tar.gz
rneovim-be72048a8ee5110efd8f629663ceac7f5a4c421d.tar.bz2
rneovim-be72048a8ee5110efd8f629663ceac7f5a4c421d.zip
Remove unused TERMINAL_OPTIONS_INIT() macro
It's not used after aa9cb48
Diffstat (limited to 'src')
-rw-r--r--src/nvim/terminal.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/nvim/terminal.h b/src/nvim/terminal.h
index 6e0b062fbd..25e609fb68 100644
--- a/src/nvim/terminal.h
+++ b/src/nvim/terminal.h
@@ -18,15 +18,6 @@ typedef struct {
terminal_close_cb close_cb;
} TerminalOptions;
-#define TERMINAL_OPTIONS_INIT ((TerminalOptions) { \
- .data = NULL, \
- .width = 80, \
- .height = 24, \
- .write_cb = NULL, \
- .resize_cb = NULL, \
- .close_cb = NULL \
- })
-
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "terminal.h.generated.h"
#endif