comparison src/proto/eval.pro @ 24780:7bc92a651472 v8.2.2928

patch 8.2.2928: the evalfunc.c file is too big Commit: https://github.com/vim/vim/commit/01c798c31a94a50ad0c4a022fc21c1a31553be21 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Wed Jun 2 17:07:18 2021 +0200 patch 8.2.2928: the evalfunc.c file is too big Problem: The evalfunc.c file is too big. Solution: Move float related functionality to a separate file. (Yegappan Lakshmanan, closes #8287)
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Jun 2021 17:15:03 +0200
parents 4b417b776b95
children dc66d0284518
comparison
equal deleted inserted replaced
24779:3675d97a795e 24780:7bc92a651472
54 int set_ref_in_list_items(list_T *l, int copyID, ht_stack_T **ht_stack); 54 int set_ref_in_list_items(list_T *l, int copyID, ht_stack_T **ht_stack);
55 int set_ref_in_item(typval_T *tv, int copyID, ht_stack_T **ht_stack, list_stack_T **list_stack); 55 int set_ref_in_item(typval_T *tv, int copyID, ht_stack_T **ht_stack, list_stack_T **list_stack);
56 char_u *echo_string_core(typval_T *tv, char_u **tofree, char_u *numbuf, int copyID, int echo_style, int restore_copyID, int composite_val); 56 char_u *echo_string_core(typval_T *tv, char_u **tofree, char_u *numbuf, int copyID, int echo_style, int restore_copyID, int composite_val);
57 char_u *echo_string(typval_T *tv, char_u **tofree, char_u *numbuf, int copyID); 57 char_u *echo_string(typval_T *tv, char_u **tofree, char_u *numbuf, int copyID);
58 char_u *string_quote(char_u *str, int function); 58 char_u *string_quote(char_u *str, int function);
59 int string2float(char_u *text, float_T *value);
60 int buf_byteidx_to_charidx(buf_T *buf, int lnum, int byteidx); 59 int buf_byteidx_to_charidx(buf_T *buf, int lnum, int byteidx);
61 int buf_charidx_to_byteidx(buf_T *buf, int lnum, int charidx); 60 int buf_charidx_to_byteidx(buf_T *buf, int lnum, int charidx);
62 pos_T *var2fpos(typval_T *varp, int dollar_lnum, int *fnum, int charcol); 61 pos_T *var2fpos(typval_T *varp, int dollar_lnum, int *fnum, int charcol);
63 int list2fpos(typval_T *arg, pos_T *posp, int *fnump, colnr_T *curswantp, int charcol); 62 int list2fpos(typval_T *arg, pos_T *posp, int *fnump, colnr_T *curswantp, int charcol);
64 int get_env_len(char_u **arg); 63 int get_env_len(char_u **arg);