Mercurial > vim
changeset 13606:5a3146ceb318 v8.0.1675
patch 8.0.1675: unused macro argument in libvterm
commit https://github.com/vim/vim/commit/820082914122d5bf7b6e89ff30cf364ad40a560f
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Apr 8 12:17:04 2018 +0200
patch 8.0.1675: unused macro argument in libvterm
Problem: Unused macro argument in libvterm. (Randall W. Morris)
Solution: Remove the argument.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 08 Apr 2018 12:30:06 +0200 |
parents | 10967d36a530 |
children | 2e79e5e6ce15 |
files | src/libvterm/src/parser.c src/version.c |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/libvterm/src/parser.c +++ b/src/libvterm/src/parser.c @@ -141,7 +141,7 @@ size_t vterm_input_write(VTerm *vt, cons break; } -#define ENTER_STRING_STATE(st) do { vt->parser.state = STRING; string_start = bytes + pos + 1; } while(0) +#define ENTER_STRING_STATE() do { vt->parser.state = STRING; string_start = bytes + pos + 1; } while(0) #define ENTER_STATE(st) do { vt->parser.state = st; string_start = NULL; } while(0) #define ENTER_NORMAL_STATE() ENTER_STATE(NORMAL)