1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-07-08 22:24:15 -04:00

uemacs: convert typedef struct UFUNC to struct user_function.

Signed-off-by: Thiago Farina <tfransosi@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Thiago Farina 2010-06-26 18:40:11 -03:00 committed by Linus Torvalds
parent 3b4567fb81
commit d01bdbdc42

13
evar.h
View File

@ -113,19 +113,18 @@ static char *envars[] = {
#define EVSCROLLCOUNT 39
#define EVSCROLL 40
/* list of recognized user functions */
typedef struct UFUNC {
char *f_name; /* name of function */
int f_type; /* 1 = monamic, 2 = dynamic */
} UFUNC;
/* List of recognized user functions */
struct user_function {
char *f_name; /* name of function */
int f_type; /* 1 = monamic, 2 = dynamic */
};
#define NILNAMIC 0
#define MONAMIC 1
#define DYNAMIC 2
#define TRINAMIC 3
static UFUNC funcs[] = {
static struct user_function funcs[] = {
{ "add", DYNAMIC }, /* add two numbers together */
{ "sub", DYNAMIC }, /* subtraction */
{ "tim", DYNAMIC }, /* multiplication */