comparison src/proto/main.pro @ 19396:a961efb326e5 v8.2.0256

patch 8.2.0256: time and timer related code is spread out Commit: https://github.com/vim/vim/commit/0a8fed6231c84e4e1b3a7dd6c0d95d3f98207fe0 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 14 13:22:17 2020 +0100 patch 8.2.0256: time and timer related code is spread out Problem: Time and timer related code is spread out. Solution: Move time and timer related code to a new file. (Yegappan Lakshmanan, closes #5604)
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Feb 2020 13:30:05 +0100
parents 7f57ea9a4ba8
children 5e41b2e63c73
comparison
equal deleted inserted replaced
19395:eb5ef6f5f58b 19396:a961efb326e5
10 void main_loop(int cmdwin, int noexmode); 10 void main_loop(int cmdwin, int noexmode);
11 void getout_preserve_modified(int exitval); 11 void getout_preserve_modified(int exitval);
12 void getout(int exitval); 12 void getout(int exitval);
13 int process_env(char_u *env, int is_viminit); 13 int process_env(char_u *env, int is_viminit);
14 void mainerr_arg_missing(char_u *str); 14 void mainerr_arg_missing(char_u *str);
15 void time_push(void *tv_rel, void *tv_start);
16 void time_pop(void *tp);
17 void time_msg(char *mesg, void *tv_start);
18 void server_to_input_buf(char_u *str); 15 void server_to_input_buf(char_u *str);
19 char_u *eval_client_expr_to_string(char_u *expr); 16 char_u *eval_client_expr_to_string(char_u *expr);
20 int sendToLocalVim(char_u *cmd, int asExpr, char_u **result); 17 int sendToLocalVim(char_u *cmd, int asExpr, char_u **result);
21 char_u *serverConvert(char_u *client_enc, char_u *data, char_u **tofree); 18 char_u *serverConvert(char_u *client_enc, char_u *data, char_u **tofree);
22 /* vim: set ft=c : */ 19 /* vim: set ft=c : */