diff options
author | Matthieu Coudron <mattator@gmail.com> | 2020-03-01 16:43:06 +0100 |
---|---|---|
committer | Matthieu Coudron <mattator@gmail.com> | 2020-03-01 16:45:51 +0100 |
commit | 4ffae76520c924fa9f3d5f9850f84c89c002877c (patch) | |
tree | ef34989022a6590680efacc2068aec89de5312a1 /src/nvim/option.c | |
parent | 1a2be57da3f7e33af4e4eb3e0d36569feea71253 (diff) | |
download | rneovim-4ffae76520c924fa9f3d5f9850f84c89c002877c.tar.gz rneovim-4ffae76520c924fa9f3d5f9850f84c89c002877c.tar.bz2 rneovim-4ffae76520c924fa9f3d5f9850f84c89c002877c.zip |
addressing reviews
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index e990cb5214..ae103aae15 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -2325,7 +2325,6 @@ void check_buf_options(buf_T *buf) * Does NOT check for P_ALLOCED flag! */ void free_string_option(char_u *p) - { if (p != empty_option) { xfree(p); |