comparison src/quickfix.c @ 28247:f70015784777 v8.2.4649

patch 8.2.4649: various formatting problems Commit: https://github.com/vim/vim/commit/b4ad3b0deac12674a7773311890b48fd39c6807c Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 30 10:57:45 2022 +0100 patch 8.2.4649: various formatting problems Problem: Various formatting problems. Solution: Improve the code formatting.
author Bram Moolenaar <Bram@vim.org>
date Wed, 30 Mar 2022 12:00:05 +0200
parents 495418c6cac8
children 62cc3b60493b
comparison
equal deleted inserted replaced
28246:e3d6184b89fa 28247:f70015784777
3192 // If a location list, check whether the associated window is still 3192 // If a location list, check whether the associated window is still
3193 // present. 3193 // present.
3194 if (qfl_type == QFLT_LOCATION) 3194 if (qfl_type == QFLT_LOCATION)
3195 { 3195 {
3196 win_T *wp = win_id2wp(prev_winid); 3196 win_T *wp = win_id2wp(prev_winid);
3197
3197 if (wp == NULL && curwin->w_llist != qi) 3198 if (wp == NULL && curwin->w_llist != qi)
3198 { 3199 {
3199 emsg(_(e_current_window_was_closed)); 3200 emsg(_(e_current_window_was_closed));
3200 *opened_window = FALSE; 3201 *opened_window = FALSE;
3201 return NOTDONE; 3202 return NOTDONE;