]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - terminal.h
Fix semantics of empty string in mkfiles.pl "!cflags".
[PuTTY.git] / terminal.h
index 9f0561124c0bfff58ab0534ba882ce94182caba1..01d5f57a2d7e4f3f189f1ea7276eca6998c58cb6 100644 (file)
@@ -172,7 +172,7 @@ struct terminal_tag {
 #define ARGS_MAX 32                   /* max # of esc sequence arguments */
 #define ARG_DEFAULT 0                 /* if an arg isn't specified */
 #define def(a,d) ( (a) == ARG_DEFAULT ? (d) : (a) )
-    int esc_args[ARGS_MAX];
+    unsigned esc_args[ARGS_MAX];
     int esc_nargs;
     int esc_query;
 #define ANSI(x,y)      ((x)+((y)<<8))
@@ -223,7 +223,6 @@ struct terminal_tag {
 
     wchar_t *paste_buffer;
     int paste_len, paste_pos;
-    Terminal *paste_timer_ctx;
 
     void (*resize_fn)(void *, int, int);
     void *resize_ctx;