Mercurial > vim
annotate src/proto/main.pro @ 17298:3d90ae62deca v8.1.1648
patch 8.1.1648: MS-Windows: build error with normal feaures
commit https://github.com/vim/vim/commit/3f3e954d9676e374f222a18786c78e50af5041cb
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jul 7 20:30:48 2019 +0200
patch 8.1.1648: MS-Windows: build error with normal feaures
Problem: MS-Windows: build error with normal feaures.
Solution: Adjust #ifdef for find_word_under_cursor().
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 07 Jul 2019 20:45:04 +0200 |
parents | 6e1c19d3de03 |
children | a2870e6f5b45 |
rev | line source |
---|---|
7 | 1 /* main.c */ |
9832
568ea507b0cd
commit https://github.com/vim/vim/commit/a357e44ccdf5cfe9f6d35cc348ca33ccd973e1a9
Christian Brabandt <cb@256bit.org>
parents:
9542
diff
changeset
|
2 int vim_main2(void); |
568ea507b0cd
commit https://github.com/vim/vim/commit/a357e44ccdf5cfe9f6d35cc348ca33ccd973e1a9
Christian Brabandt <cb@256bit.org>
parents:
9542
diff
changeset
|
3 void common_init(mparm_T *paramp); |
11307
6e1c19d3de03
patch 8.0.0539: startup test fails on Mac
Christian Brabandt <cb@256bit.org>
parents:
11177
diff
changeset
|
4 int is_not_a_term(void); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2340
diff
changeset
|
5 void main_loop(int cmdwin, int noexmode); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2340
diff
changeset
|
6 void getout_preserve_modified(int exitval); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2340
diff
changeset
|
7 void getout(int exitval); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2340
diff
changeset
|
8 int process_env(char_u *env, int is_viminit); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2340
diff
changeset
|
9 void mainerr_arg_missing(char_u *str); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2340
diff
changeset
|
10 void time_push(void *tv_rel, void *tv_start); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2340
diff
changeset
|
11 void time_pop(void *tp); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2340
diff
changeset
|
12 void time_msg(char *mesg, void *tv_start); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2340
diff
changeset
|
13 void server_to_input_buf(char_u *str); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2340
diff
changeset
|
14 char_u *eval_client_expr_to_string(char_u *expr); |
11177
76fb679a310e
patch 8.0.0475: not enough testing for the client-server feature
Christian Brabandt <cb@256bit.org>
parents:
9832
diff
changeset
|
15 int sendToLocalVim(char_u *cmd, int asExpr, char_u **result); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2340
diff
changeset
|
16 char_u *serverConvert(char_u *client_enc, char_u *data, char_u **tofree); |
7 | 17 /* vim: set ft=c : */ |