aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-02-23 22:49:57 -0500
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-02-23 23:00:06 -0500
commitab5083b5fc9fc8c62dae6aefc4fb2615a61c6fff (patch)
tree390d832a3ba5097718141f87a19eb1a9e789d927 /src/nvim/ex_cmds.c
parentceed85ea431b8fb4f694e4fca09f97e2a22f69d9 (diff)
downloadrneovim-ab5083b5fc9fc8c62dae6aefc4fb2615a61c6fff.tar.gz
rneovim-ab5083b5fc9fc8c62dae6aefc4fb2615a61c6fff.tar.bz2
rneovim-ab5083b5fc9fc8c62dae6aefc4fb2615a61c6fff.zip
pos: define MAXCOL to INT_MAX
Partial port of patch v8.1.0953. Remove useless casts on MAXCOL.
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r--src/nvim/ex_cmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c
index b220b034dd..103c081143 100644
--- a/src/nvim/ex_cmds.c
+++ b/src/nvim/ex_cmds.c
@@ -4198,7 +4198,7 @@ skip:
// when interactive leave cursor on the match
if (!subflags.do_ask) {
if (endcolumn) {
- coladvance((colnr_T)MAXCOL);
+ coladvance(MAXCOL);
} else {
beginline(BL_WHITE | BL_FIX);
}
@@ -5020,7 +5020,7 @@ int find_help_tags(const char_u *arg, int *num_matches, char_u ***matches,
if (keep_lang) {
flags |= TAG_KEEP_LANG;
}
- if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
+ if (find_tags(IObuff, num_matches, matches, flags, MAXCOL, NULL) == OK
&& *num_matches > 0) {
/* Sort the matches found on the heuristic number that is after the
* tag name. */