~ted/ubuntu/karmic/vim/add-breaks

« back to all changes in this revision

Viewing changes to src/proto/eval.pro

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2009-01-13 18:39:18 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20090113183918-kgq1jzdwsbbex4pq
Tags: 2:7.2.079-1ubuntu1
* Resynchronise with Debian (diversions fix closes LP: #296324). Remaining
  changes:
  - runtime/syntax/debcontrol.vim:
    + Add "metapackages" to the list of valid sections.
  - runtime/syntax/debchangelog.vim:
    + Add "jaunty" to the list of valid suites.
  - Drop vim-lesstif package and lesstif2-dev build-dependency.
  - Enable Python interpreter on basic builds.
  - Create a .pot file for translations.
  - Disable autoindent, line-wrapping, and backup files by default.
  - runtime/syntax/debsources.vim:
    + Add "jaunty" to debsourcesDistrKeyword
  - runtime/syntax/grub.vim:
    + Add Ubuntu-specific 'quiet' keyword.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
int eval_to_bool __ARGS((char_u *arg, int *error, char_u **nextcmd, int skip));
18
18
char_u *eval_to_string_skip __ARGS((char_u *arg, char_u **nextcmd, int skip));
19
19
int skip_expr __ARGS((char_u **pp));
20
 
char_u *eval_to_string __ARGS((char_u *arg, char_u **nextcmd, int dolist));
 
20
char_u *eval_to_string __ARGS((char_u *arg, char_u **nextcmd, int convert));
21
21
char_u *eval_to_string_safe __ARGS((char_u *arg, char_u **nextcmd, int use_sandbox));
22
22
int eval_to_number __ARGS((char_u *expr));
23
23
list_T *eval_spell_expr __ARGS((char_u *badword, char_u *expr));
46
46
void list_unref __ARGS((list_T *l));
47
47
void list_free __ARGS((list_T *l, int recurse));
48
48
dictitem_T *dict_lookup __ARGS((hashitem_T *hi));
 
49
char_u *list_find_str __ARGS((list_T *l, long idx));
49
50
int list_append_dict __ARGS((list_T *list, dict_T *dict));
 
51
int list_append_string __ARGS((list_T *l, char_u *str, int len));
50
52
int garbage_collect __ARGS((void));
51
53
dict_T *dict_alloc __ARGS((void));
52
54
int dict_add_nr_str __ARGS((dict_T *d, char *key, long nr, char_u *str));
58
60
void set_vim_var_nr __ARGS((int idx, long val));
59
61
long get_vim_var_nr __ARGS((int idx));
60
62
char_u *get_vim_var_str __ARGS((int idx));
61
 
void set_vcount __ARGS((long count, long count1));
 
63
list_T *get_vim_var_list __ARGS((int idx));
 
64
void set_vcount __ARGS((long count, long count1, int set_prevcount));
62
65
void set_vim_var_string __ARGS((int idx, char_u *val, int len));
 
66
void set_vim_var_list __ARGS((int idx, list_T *val));
63
67
void set_reg_var __ARGS((int c));
64
68
char_u *v_exception __ARGS((char_u *oldval));
65
69
char_u *v_throwpoint __ARGS((char_u *oldval));
94
98
void write_viminfo_varlist __ARGS((FILE *fp));
95
99
int store_session_globals __ARGS((FILE *fd));
96
100
void last_set_msg __ARGS((scid_T scriptID));
 
101
void ex_oldfiles __ARGS((exarg_T *eap));
97
102
int modify_fname __ARGS((char_u *src, int *usedlen, char_u **fnamep, char_u **bufp, int *fnamelen));
98
103
char_u *do_string_sub __ARGS((char_u *str, char_u *pat, char_u *sub, char_u *flags));
99
104
/* vim: set ft=c : */