annotate src/proto/if_cscope.pro @ 5604:b43363a7b4c7
v7.4.149
updated for version 7.4.149
Problem: Get E685 error when assigning a function to an autoload variable.
(Yukihiro Nakadaira)
Solution: Instead of having a global no_autoload variable, pass an autoload
flag down to where it is used. (ZyX)
author |
Bram Moolenaar <bram@vim.org> |
date |
Tue, 14 Jan 2014 15:24:39 +0100 |
parents |
ff5a4a71a761 |
children |
21b0a39d13ed |
rev |
line source |
7
|
1 /* if_cscope.c */
|
1845
|
2 char_u *get_cscope_name __ARGS((expand_T *xp, int idx));
|
1858
|
3 void set_context_in_cscope_cmd __ARGS((expand_T *xp, char_u *arg, cmdidx_T cmdidx));
|
1120
|
4 void do_cscope __ARGS((exarg_T *eap));
|
|
5 void do_scscope __ARGS((exarg_T *eap));
|
|
6 void do_cstag __ARGS((exarg_T *eap));
|
|
7 int cs_fgets __ARGS((char_u *buf, int size));
|
|
8 void cs_free_tags __ARGS((void));
|
|
9 void cs_print_tags __ARGS((void));
|
|
10 int cs_connection __ARGS((int num, char_u *dbpath, char_u *ppath));
|
1385
|
11 void cs_end __ARGS((void));
|
7
|
12 /* vim: set ft=c : */
|