diff options
author | Thomas Wienecke <wienecke.t@gmail.com> | 2014-04-01 18:11:28 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-03 10:32:41 -0300 |
commit | bfa4490aacda4c1e48386d4fc5e1e5884a0e0f9d (patch) | |
tree | afe9c4cfa3b65e9d95883da5bd49f82641c0d811 /src/ex_cmds2.c | |
parent | c454030478f23253c257aa759ea56b970a11cdfe (diff) | |
download | rneovim-bfa4490aacda4c1e48386d4fc5e1e5884a0e0f9d.tar.gz rneovim-bfa4490aacda4c1e48386d4fc5e1e5884a0e0f9d.tar.bz2 rneovim-bfa4490aacda4c1e48386d4fc5e1e5884a0e0f9d.zip |
Rename FPC_* constants.
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 13e6f26a84..fefe6ed461 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -1693,7 +1693,7 @@ static int editing_arg_idx(win_T *win) && (win->w_buffer->b_ffname == NULL || !(path_full_compare( alist_name(&WARGLIST(win)[win->w_arg_idx]), - win->w_buffer->b_ffname, TRUE) & FPC_SAME)))); + win->w_buffer->b_ffname, TRUE) & kEqualFiles)))); } /* @@ -1713,7 +1713,7 @@ void check_arg_idx(win_T *win) && (win->w_buffer->b_fnum == GARGLIST[GARGCOUNT - 1].ae_fnum || (win->w_buffer->b_ffname != NULL && (path_full_compare(alist_name(&GARGLIST[GARGCOUNT - 1]), - win->w_buffer->b_ffname, TRUE) & FPC_SAME)))) + win->w_buffer->b_ffname, TRUE) & kEqualFiles)))) arg_had_last = TRUE; } else { /* We are editing the current entry in the argument list. |