diff options
author | Michael Reed <Pyrohh@users.noreply.github.com> | 2015-11-15 13:02:53 -0500 |
---|---|---|
committer | Michael Reed <Pyrohh@users.noreply.github.com> | 2015-11-15 13:02:53 -0500 |
commit | 9b8ac827b4b6486d9d0bdf374b998f37f7b7442a (patch) | |
tree | 6921c186865f3d8fa2fc80754385d897d0c08835 /src | |
parent | 660f12f5b3988ac1d4f992fc113164e587a76600 (diff) | |
parent | be72048a8ee5110efd8f629663ceac7f5a4c421d (diff) | |
download | rneovim-9b8ac827b4b6486d9d0bdf374b998f37f7b7442a.tar.gz rneovim-9b8ac827b4b6486d9d0bdf374b998f37f7b7442a.tar.bz2 rneovim-9b8ac827b4b6486d9d0bdf374b998f37f7b7442a.zip |
Merge pull request #3672 from Pyrohh/macro-cleanup
[RFC] Remove unused TERMINAL_OPTIONS_INIT() macro
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/terminal.h | 9 |
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 |