diff options
author | ZyX <kp-pav@yandex.ru> | 2017-04-16 21:11:37 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-04-16 21:13:25 +0300 |
commit | 4e7150ee94d967ff51cbef24a7e18f71290ed9a2 (patch) | |
tree | a8eb6221997215340f18eece5a3a7e679ba3abe9 | |
parent | be9d98cb45aab402b7666776ad1288b9a79bb0c1 (diff) | |
download | rneovim-4e7150ee94d967ff51cbef24a7e18f71290ed9a2.tar.gz rneovim-4e7150ee94d967ff51cbef24a7e18f71290ed9a2.tar.bz2 rneovim-4e7150ee94d967ff51cbef24a7e18f71290ed9a2.zip |
quicfix: Remove duplicate condition
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 33b832c033..af055e9b75 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -3284,7 +3284,6 @@ void ex_cc(exarg_T *eap) || eap->cmdidx == CMD_lrewind || eap->cmdidx == CMD_lfirst || eap->cmdidx == CMD_llast - || eap->cmdidx == CMD_llast || eap->cmdidx == CMD_ldo || eap->cmdidx == CMD_lfdo) { qi = GET_LOC_LIST(curwin); @@ -3341,7 +3340,6 @@ void ex_cnext(exarg_T *eap) || eap->cmdidx == CMD_lnfile || eap->cmdidx == CMD_lNfile || eap->cmdidx == CMD_lpfile - || eap->cmdidx == CMD_lpfile || eap->cmdidx == CMD_ldo || eap->cmdidx == CMD_lfdo) { qi = GET_LOC_LIST(curwin); |