diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-02-08 09:20:24 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-02-08 09:20:24 +0000 |
commit | 8b6144bdfe9efccab5045ebef9f3d5dcf5ee9d00 (patch) | |
tree | 51d8d6df519d53d4124f3155bb2c3bcbca450226 /src/proto/quickfix.pro | |
parent | 9f2c6e1deb931db29f9d3d6e1113cd1ccc835d21 (diff) | |
download | vim-8b6144bdfe9efccab5045ebef9f3d5dcf5ee9d00.zip |
updated for version 7.0194
Diffstat (limited to 'src/proto/quickfix.pro')
-rw-r--r-- | src/proto/quickfix.pro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proto/quickfix.pro b/src/proto/quickfix.pro index 152f9064f..408bf6dec 100644 --- a/src/proto/quickfix.pro +++ b/src/proto/quickfix.pro @@ -1,7 +1,8 @@ /* quickfix.c */ int qf_init __ARGS((win_T *wp, char_u *efile, char_u *errorformat, int newlist)); void qf_free_all __ARGS((win_T *wp)); -void qf_jump __ARGS((win_T *wp, int dir, int errornr, int forceit)); +void copy_loclist __ARGS((win_T *from, win_T *to)); +void qf_jump __ARGS((qf_info_T *qi, int dir, int errornr, int forceit)); void qf_list __ARGS((exarg_T *eap)); void qf_age __ARGS((exarg_T *eap)); void qf_mark_adjust __ARGS((win_T *wp, linenr_T line1, linenr_T line2, long amount, long amount_after)); @@ -26,5 +27,4 @@ int set_errorlist __ARGS((win_T *wp, list_T *list, int action)); void ex_cbuffer __ARGS((exarg_T *eap)); void ex_cexpr __ARGS((exarg_T *eap)); void ex_helpgrep __ARGS((exarg_T *eap)); -void copy_loclist __ARGS((win_T *from, win_T *to)); /* vim: set ft=c : */ |