diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2023-01-30 13:04:42 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2023-01-30 13:04:42 +0000 |
commit | f2e30d0c448b9754d0d4daa901b51fbbf4c30747 (patch) | |
tree | 06e9f4c86a67ae8004ce6527cc0c7e2841e04c1a /src/proto/quickfix.pro | |
parent | 2a99fe6c41efcd5d1eb47823e7e73cf391e230ba (diff) | |
download | vim-git-f2e30d0c448b9754d0d4daa901b51fbbf4c30747.tar.gz |
patch 9.0.1262: the did_set_string_option function is too longv9.0.1262
Problem: The did_set_string_option function is too long.
Solution: Split off functionality to individual functions. (Yegappan
Lakshmanan, Lewis Russell, closes #11904)
Diffstat (limited to 'src/proto/quickfix.pro')
-rw-r--r-- | src/proto/quickfix.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/quickfix.pro b/src/proto/quickfix.pro index 913c3c404..3a210b066 100644 --- a/src/proto/quickfix.pro +++ b/src/proto/quickfix.pro @@ -15,7 +15,7 @@ void ex_cclose(exarg_T *eap); void ex_copen(exarg_T *eap); void ex_cbottom(exarg_T *eap); linenr_T qf_current_entry(win_T *wp); -int qf_process_qftf_option(void); +char *qf_process_qftf_option(void); int grep_internal(cmdidx_T cmdidx); void ex_make(exarg_T *eap); int qf_get_size(exarg_T *eap); |