diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-03 22:50:42 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-03 22:50:42 +0000 |
commit | bfb2d40b6ec0b8fff51bc6fadabf4aaeb383beb8 (patch) | |
tree | 12ef17978672a5981dbe661a5d0ba4dbfad3d8a6 /src/proto | |
parent | a55252087b1b771b0a1a509d2ac90067404287d7 (diff) | |
download | vim-git-bfb2d40b6ec0b8fff51bc6fadabf4aaeb383beb8.tar.gz |
updated for version 7.0213
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/gui_gtk_x11.pro | 1 | ||||
-rw-r--r-- | src/proto/mark.pro | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/proto/gui_gtk_x11.pro b/src/proto/gui_gtk_x11.pro index 30bde6a13..afb384eb3 100644 --- a/src/proto/gui_gtk_x11.pro +++ b/src/proto/gui_gtk_x11.pro @@ -6,6 +6,7 @@ void gui_mch_stop_blink __ARGS((void)); void gui_mch_start_blink __ARGS((void)); int gui_mch_init_check __ARGS((void)); void gui_mch_show_tabline __ARGS((int showit)); +int gui_mch_showing_tabline __ARGS((void)); void gui_mch_update_tabline __ARGS((void)); void gui_mch_set_curtab __ARGS((int nr)); int gui_mch_init __ARGS((void)); diff --git a/src/proto/mark.pro b/src/proto/mark.pro index 040f08bc0..13e186899 100644 --- a/src/proto/mark.pro +++ b/src/proto/mark.pro @@ -1,10 +1,12 @@ /* mark.c */ int setmark __ARGS((int c)); +int setmark_pos __ARGS((int c, pos_T *pos, int fnum)); void setpcmark __ARGS((void)); void checkpcmark __ARGS((void)); pos_T *movemark __ARGS((int count)); pos_T *movechangelist __ARGS((int count)); pos_T *getmark __ARGS((int c, int changefile)); +pos_T *getmark_fnum __ARGS((int c, int changefile, int *fnum)); pos_T *getnextmark __ARGS((pos_T *startpos, int dir, int begin_line)); void fmarks_check_names __ARGS((buf_T *buf)); int check_mark __ARGS((pos_T *pos)); |