From 9c69700c780ed70dc493c3c58c036662f501327c Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 23 Aug 2008 16:46:44 +0000 Subject: [PATCH] (TERMINAL_ACTIVE_P): Handle output_msdos_raw in addition to output_termcap. --- src/termhooks.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/termhooks.h b/src/termhooks.h index f81d5b6a2b6..9edd4bf052e 100644 --- a/src/termhooks.h +++ b/src/termhooks.h @@ -633,7 +633,7 @@ extern struct terminal *terminal_list; #endif /* Return true if the terminal device is not suspended. */ -#define TERMINAL_ACTIVE_P(d) ((d)->type != output_termcap || (d)->display_info.tty->input) +#define TERMINAL_ACTIVE_P(d) (((d)->type != output_termcap && (d)->type !=output_msdos_raw) || (d)->display_info.tty->input) extern Lisp_Object get_terminal_param P_ ((struct terminal *, Lisp_Object)); extern struct terminal *get_terminal P_ ((Lisp_Object terminal, int)); -- 2.39.5