diff options
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 49f33c5017..ad49153a1e 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -5257,8 +5257,7 @@ void fix_help_buffer(void) else { /* Do the conversion. If it fails * use the unconverted text. */ - cp = string_convert(&vc, IObuff, - NULL); + cp = string_convert(&vc, IObuff, NULL); if (cp == NULL) cp = IObuff; } |