diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-24 17:29:03 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-24 17:29:03 +0200 |
commit | ffbbcb597c2626224594bc1a2ac1aa7f77539fcc (patch) | |
tree | bc427368414ed91a536690fd79662c6f45e74d24 /src/proto | |
parent | 2c3b1d997607e44d5037bd8875fcc98bc31020b4 (diff) | |
download | vim-git-ffbbcb597c2626224594bc1a2ac1aa7f77539fcc.tar.gz |
Give each syntax item a sequence number, so that we know when it starts and
can show the 'cchar' for each of them.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/syntax.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/syntax.pro b/src/proto/syntax.pro index 12dc9dec3..7ae13e98e 100644 --- a/src/proto/syntax.pro +++ b/src/proto/syntax.pro @@ -15,7 +15,7 @@ void set_context_in_echohl_cmd __ARGS((expand_T *xp, char_u *arg)); void set_context_in_syntax_cmd __ARGS((expand_T *xp, char_u *arg)); char_u *get_syntax_name __ARGS((expand_T *xp, int idx)); int syn_get_id __ARGS((win_T *wp, long lnum, colnr_T col, int trans, int *spellp, int keep_state)); -int get_syntax_info __ARGS((int *idp)); +int get_syntax_info __ARGS((int *seqnrp)); int syn_get_sub_char __ARGS((void)); int syn_get_stack_item __ARGS((int i)); int syn_get_foldlevel __ARGS((win_T *wp, long lnum)); |