diff options
author | Wayne Rowcliffe <war1025@gmail.com> | 2014-10-25 11:23:08 -0500 |
---|---|---|
committer | Wayne Rowcliffe <war1025@gmail.com> | 2014-11-12 00:38:34 -0600 |
commit | 63e255887099b3728c60f2cdd0c86245eabbb839 (patch) | |
tree | d3e44e746d7bbea8821d3e8eae4fce146a9032a6 /src/nvim/normal.c | |
parent | 8da78bc3ae694aa2a6edaac97756211374491471 (diff) | |
download | rneovim-63e255887099b3728c60f2cdd0c86245eabbb839.tar.gz rneovim-63e255887099b3728c60f2cdd0c86245eabbb839.tar.bz2 rneovim-63e255887099b3728c60f2cdd0c86245eabbb839.zip |
Convert some values from buffer_defs.h to 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 */ |