diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-02-22 21:25:37 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-02-22 21:25:37 +0000 |
commit | d1f56e68f1315687ff5b913e2577f11b0b620573 (patch) | |
tree | adbac0a00c07ee933058543eb3f251a83e707624 /src/proto | |
parent | 238a564935abe36832b267f32b5487556c640d00 (diff) | |
download | vim-git-d1f56e68f1315687ff5b913e2577f11b0b620573.tar.gz |
updated for version 7.0204v7.0204
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/buffer.pro | 2 | ||||
-rw-r--r-- | src/proto/edit.pro | 4 | ||||
-rw-r--r-- | src/proto/option.pro | 3 | ||||
-rw-r--r-- | src/proto/window.pro | 6 |
4 files changed, 8 insertions, 7 deletions
diff --git a/src/proto/buffer.pro b/src/proto/buffer.pro index 07ec64c06..73ad5306e 100644 --- a/src/proto/buffer.pro +++ b/src/proto/buffer.pro @@ -40,7 +40,7 @@ void col_print __ARGS((char_u *buf, int col, int vcol)); void maketitle __ARGS((void)); void resettitle __ARGS((void)); void free_titles __ARGS((void)); -int build_stl_str_hl __ARGS((win_T *wp, char_u *out, size_t outlen, char_u *fmt, int insecure, int fillchar, int maxwidth, struct stl_hlrec *hl)); +int build_stl_str_hl __ARGS((win_T *wp, char_u *out, size_t outlen, char_u *fmt, int use_sandbox, int fillchar, int maxwidth, struct stl_hlrec *hltab, struct stl_hlrec *tabtab)); void get_rel_pos __ARGS((win_T *wp, char_u *str)); int append_arg_number __ARGS((win_T *wp, char_u *buf, int add_file, int maxlen)); char_u *fix_fname __ARGS((char_u *fname)); diff --git a/src/proto/edit.pro b/src/proto/edit.pro index 5434b1c1b..66df8f590 100644 --- a/src/proto/edit.pro +++ b/src/proto/edit.pro @@ -7,8 +7,8 @@ void change_indent __ARGS((int type, int amount, int round, int replaced)); void truncate_spaces __ARGS((char_u *line)); void backspace_until_column __ARGS((int col)); int vim_is_ctrl_x_key __ARGS((int c)); -int ins_compl_add_infercase __ARGS((char_u *str, int len, char_u *fname, int dir, int flags)); -int ins_compl_add __ARGS((char_u *str, int len, char_u *fname, char_u *extra, int cdir, int flags)); +int ins_compl_add_infercase __ARGS((char_u *str, int len, int icase, char_u *fname, int dir, int flags)); +int ins_compl_add __ARGS((char_u *str, int len, int icase, char_u *fname, char_u *extra, int cdir, int flags)); void ins_compl_show_pum __ARGS((void)); char_u *find_word_start __ARGS((char_u *ptr)); char_u *find_word_end __ARGS((char_u *ptr)); diff --git a/src/proto/option.pro b/src/proto/option.pro index 4a49d8921..fbe2f095a 100644 --- a/src/proto/option.pro +++ b/src/proto/option.pro @@ -17,9 +17,10 @@ void check_buf_options __ARGS((buf_T *buf)); void free_string_option __ARGS((char_u *p)); void clear_string_option __ARGS((char_u **pp)); void set_term_option_alloced __ARGS((char_u **p)); -int was_set_insecurely __ARGS((char_u *opt)); +int was_set_insecurely __ARGS((char_u *opt, int opt_flags)); void set_string_option_direct __ARGS((char_u *name, int opt_idx, char_u *val, int opt_flags)); char_u *check_stl_option __ARGS((char_u *s)); +void set_option_scriptID __ARGS((char_u *name, int id)); int get_option_value __ARGS((char_u *name, long *numval, char_u **stringval, int opt_flags)); void set_option_value __ARGS((char_u *name, long number, char_u *string, int opt_flags)); char_u *get_term_code __ARGS((char_u *tname)); diff --git a/src/proto/window.pro b/src/proto/window.pro index cda7b060d..ca0de7a28 100644 --- a/src/proto/window.pro +++ b/src/proto/window.pro @@ -41,9 +41,9 @@ void win_comp_scroll __ARGS((win_T *wp)); void command_height __ARGS((long old_p_ch)); void last_status __ARGS((int morewin)); int tabpageline_height __ARGS((void)); -char_u *grab_file_name __ARGS((long count)); -char_u *file_name_at_cursor __ARGS((int options, long count)); -char_u *file_name_in_line __ARGS((char_u *line, int col, int options, long count, char_u *rel_fname)); +char_u *grab_file_name __ARGS((long count, linenr_T *file_lnum)); +char_u *file_name_at_cursor __ARGS((int options, long count, linenr_T *file_lnum)); +char_u *file_name_in_line __ARGS((char_u *line, int col, int options, long count, char_u *rel_fname, linenr_T *file_lnum)); char_u *find_file_name_in_path __ARGS((char_u *ptr, int len, int options, long count, char_u *rel_fname)); int path_with_url __ARGS((char_u *fname)); int vim_isAbsName __ARGS((char_u *name)); |