mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
[term] enum term_mode_type -> term_mode_type_T
This commit is contained in:
parent
63f151c35f
commit
65e74dc39d
@ -280,7 +280,7 @@ struct screen_driver {
|
|||||||
|
|
||||||
/** The terminal._template_.type. Together with the #name member they
|
/** The terminal._template_.type. Together with the #name member they
|
||||||
* uniquely identify the screen_driver. */
|
* uniquely identify the screen_driver. */
|
||||||
enum term_mode_type type;
|
term_mode_type_T type;
|
||||||
|
|
||||||
/** set_screen_driver_opt() sets these. */
|
/** set_screen_driver_opt() sets these. */
|
||||||
struct screen_driver_opt opt;
|
struct screen_driver_opt opt;
|
||||||
@ -428,7 +428,7 @@ static const struct screen_driver_opt fbterm_screen_driver_opt = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/** Default options for all the different types of terminals.
|
/** Default options for all the different types of terminals.
|
||||||
* XXX: Keep in sync with enum term_mode_type. */
|
* XXX: Keep in sync with term_mode_type_T. */
|
||||||
static const struct screen_driver_opt *const screen_driver_opts[] = {
|
static const struct screen_driver_opt *const screen_driver_opts[] = {
|
||||||
/* TERM_DUMB: */ &dumb_screen_driver_opt,
|
/* TERM_DUMB: */ &dumb_screen_driver_opt,
|
||||||
/* TERM_VT100: */ &vt100_screen_driver_opt,
|
/* TERM_VT100: */ &vt100_screen_driver_opt,
|
||||||
@ -590,7 +590,7 @@ static int
|
|||||||
screen_driver_change_hook(struct session *ses, struct option *term_spec,
|
screen_driver_change_hook(struct session *ses, struct option *term_spec,
|
||||||
struct option *changed)
|
struct option *changed)
|
||||||
{
|
{
|
||||||
enum term_mode_type type = get_opt_int_tree(term_spec, "type", NULL);
|
term_mode_type_T type = get_opt_int_tree(term_spec, "type", NULL);
|
||||||
struct screen_driver *driver;
|
struct screen_driver *driver;
|
||||||
char *name = term_spec->name;
|
char *name = term_spec->name;
|
||||||
|
|
||||||
@ -604,7 +604,7 @@ screen_driver_change_hook(struct session *ses, struct option *term_spec,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static inline struct screen_driver *
|
static inline struct screen_driver *
|
||||||
add_screen_driver(enum term_mode_type type, struct terminal *term, int env_len)
|
add_screen_driver(term_mode_type_T type, struct terminal *term, int env_len)
|
||||||
{
|
{
|
||||||
struct screen_driver *driver;
|
struct screen_driver *driver;
|
||||||
|
|
||||||
@ -631,7 +631,7 @@ add_screen_driver(enum term_mode_type type, struct terminal *term, int env_len)
|
|||||||
static inline struct screen_driver *
|
static inline struct screen_driver *
|
||||||
get_screen_driver(struct terminal *term)
|
get_screen_driver(struct terminal *term)
|
||||||
{
|
{
|
||||||
enum term_mode_type type = get_opt_int_tree(term->spec, "type", NULL);
|
term_mode_type_T type = get_opt_int_tree(term->spec, "type", NULL);
|
||||||
char *name = term->spec->name;
|
char *name = term->spec->name;
|
||||||
int len = strlen(name);
|
int len = strlen(name);
|
||||||
struct screen_driver *driver;
|
struct screen_driver *driver;
|
||||||
|
@ -25,6 +25,7 @@ enum term_mode_type {
|
|||||||
TERM_FBTERM,
|
TERM_FBTERM,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
typedef int term_mode_type_T;
|
||||||
/** This is a bitmask describing the environment we are living in,
|
/** This is a bitmask describing the environment we are living in,
|
||||||
* terminal-wise. We can then conditionally use various features available
|
* terminal-wise. We can then conditionally use various features available
|
||||||
* in such an environment. */
|
* in such an environment. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user