summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-13 14:26:44 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-13 14:26:44 +0000
commit851f86b951cdd67ad9cf3149e46169d1375c8d82 (patch)
tree345b918abbe1034654b12502e877bebad593c1e5 /src/structs.h
parent739f13a55b4982efb37ebc9282e7f79975fff982 (diff)
downloadvim-git-851f86b951cdd67ad9cf3149e46169d1375c8d82.tar.gz
patch 8.2.3796: the funcexe_T struct members are not named consistentlyv8.2.3796
Problem: The funcexe_T struct members are not named consistently. Solution: Prefix "fe_" to all the members.
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/structs.h b/src/structs.h
index b6c7fce4f..5b7739ed5 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1992,15 +1992,15 @@ typedef struct
// called_func_argcount)
//
typedef struct {
- int (* argv_func)(int, typval_T *, int, int);
- linenr_T firstline; // first line of range
- linenr_T lastline; // last line of range
- int *doesrange; // if not NULL: return: function handled range
- int evaluate; // actually evaluate expressions
- partial_T *partial; // for extra arguments
- dict_T *selfdict; // Dictionary for "self"
- typval_T *basetv; // base for base->method()
- type_T *check_type; // type from funcref or NULL
+ int (* fe_argv_func)(int, typval_T *, int, int);
+ linenr_T fe_firstline; // first line of range
+ linenr_T fe_lastline; // last line of range
+ int *fe_doesrange; // if not NULL: return: function handled range
+ int fe_evaluate; // actually evaluate expressions
+ partial_T *fe_partial; // for extra arguments
+ dict_T *fe_selfdict; // Dictionary for "self"
+ typval_T *fe_basetv; // base for base->method()
+ type_T *fe_check_type; // type from funcref or NULL
int fe_found_var; // if the function is not found then give an
// error that a variable is not callable.
} funcexe_T;