diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-11-12 11:13:02 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-11-12 11:13:02 -0500 |
commit | 205ac8d176f67514e3bc8fa069c8e7d92be69094 (patch) | |
tree | d3e44e746d7bbea8821d3e8eae4fce146a9032a6 /src/nvim/normal.c | |
parent | 8da78bc3ae694aa2a6edaac97756211374491471 (diff) | |
parent | 63e255887099b3728c60f2cdd0c86245eabbb839 (diff) | |
download | rneovim-205ac8d176f67514e3bc8fa069c8e7d92be69094.tar.gz rneovim-205ac8d176f67514e3bc8fa069c8e7d92be69094.tar.bz2 rneovim-205ac8d176f67514e3bc8fa069c8e7d92be69094.zip |
Merge pull request #1345 from war1025/dev/wininfo_bools
Convert some values into bools
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 829c762c51..29070ff188 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -413,7 +413,7 @@ static int find_command(int cmdchar) /* * Execute a command in Normal mode. */ -void +void normal_cmd ( oparg_T *oap, bool toplevel /* true when called from main() */ @@ -3244,7 +3244,7 @@ static void nv_page(cmdarg_T *cap) /* * Implementation of "gd" and "gD" command. */ -static void +static void nv_gd ( oparg_T *oap, int nchar, @@ -4832,7 +4832,7 @@ static void nv_next(cmdarg_T *cap) * Search for "pat" in direction "dir" ('/' or '?', 0 for repeat). * Uses only cap->count1 and cap->oap from "cap". */ -static void +static void normal_search ( cmdarg_T *cap, int dir, @@ -7060,7 +7060,7 @@ static void nv_edit(cmdarg_T *cap) /* * Invoke edit() and take care of "restart_edit" and the return value. */ -static void +static void invoke_edit ( cmdarg_T *cap, int repl, /* "r" or "gr" command */ |