comparison src/quickfix.c @ 19195:2ef19eed524a v8.2.0156

patch 8.2.0156: various typos in source files and tests Commit: https://github.com/vim/vim/commit/4b96df5a017a04141c4e901b1fc5704a3ca48099 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 26 22:00:26 2020 +0100 patch 8.2.0156: various typos in source files and tests Problem: Various typos in source files and tests. Solution: Fix the typos. (Emir Sari, closes https://github.com/vim/vim/issues/5532)
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jan 2020 22:15:05 +0100
parents 050f5eaa9e50
children 102f9a44c8b3
comparison
equal deleted inserted replaced
19194:9986e645676b 19195:2ef19eed524a
2769 *new_qfidx = qf_idx; 2769 *new_qfidx = qf_idx;
2770 return qf_ptr; 2770 return qf_ptr;
2771 } 2771 }
2772 2772
2773 /* 2773 /*
2774 * Get a entry specied by 'errornr' and 'dir' from the current 2774 * Get a entry specified by 'errornr' and 'dir' from the current
2775 * quickfix/location list. 'errornr' specifies the index of the entry and 'dir' 2775 * quickfix/location list. 'errornr' specifies the index of the entry and 'dir'
2776 * specifies the direction (FORWARD/BACKWARD/FORWARD_FILE/BACKWARD_FILE). 2776 * specifies the direction (FORWARD/BACKWARD/FORWARD_FILE/BACKWARD_FILE).
2777 * Returns a pointer to the entry and the index of the new entry is stored in 2777 * Returns a pointer to the entry and the index of the new entry is stored in
2778 * 'new_qfidx'. 2778 * 'new_qfidx'.
2779 */ 2779 */
6318 } 6318 }
6319 } 6319 }
6320 6320
6321 #if defined(FEAT_EVAL) || defined(PROTO) 6321 #if defined(FEAT_EVAL) || defined(PROTO)
6322 /* 6322 /*
6323 * Copy the specified quickfix entry items into a new dict and appened the dict 6323 * Copy the specified quickfix entry items into a new dict and append the dict
6324 * to 'list'. Returns OK on success. 6324 * to 'list'. Returns OK on success.
6325 */ 6325 */
6326 static int 6326 static int
6327 get_qfline_items(qfline_T *qfp, list_T *list) 6327 get_qfline_items(qfline_T *qfp, list_T *list)
6328 { 6328 {