diff --git a/src/global.c b/src/global.c index 69c66473..3347476f 100644 --- a/src/global.c +++ b/src/global.c @@ -33,8 +33,11 @@ volatile sig_atomic_t sigwinch_counter = 0; /* Is incremented by the handler whenever a SIGWINCH occurs. */ #endif +#if defined(__linux__) && !defined(NANO_TINY) bool console; /* Whether we're running on a Linux VC (TRUE) or under X (FALSE). */ +#endif + bool meta_key; /* Whether the current keystroke is a Meta key. */ bool focusing = TRUE; diff --git a/src/nano.c b/src/nano.c index 6e55f494..4d82c938 100644 --- a/src/nano.c +++ b/src/nano.c @@ -2482,9 +2482,10 @@ int main(int argc, char **argv) /* Set up the terminal state. */ terminal_init(); +#if defined(__linux__) && !defined(NANO_TINY) /* Check whether we're running on a Linux console. */ console = (getenv("DISPLAY") == NULL); - +#endif #ifdef DEBUG fprintf(stderr, "Main: set up windows\n"); #endif diff --git a/src/proto.h b/src/proto.h index 6396f373..4f6624ea 100644 --- a/src/proto.h +++ b/src/proto.h @@ -30,7 +30,10 @@ extern volatile sig_atomic_t sigwinch_counter; #endif +#if defined(__linux__) && !defined(NANO_TINY) extern bool console; +#endif + extern bool meta_key; extern bool focusing; diff --git a/src/winio.c b/src/winio.c index bcfb8a2a..1f31195a 100644 --- a/src/winio.c +++ b/src/winio.c @@ -23,7 +23,9 @@ #include "proto.h" #include "revision.h" +#if defined(__linux__) && !defined(NANO_TINY) #include +#endif #include #include @@ -504,6 +506,7 @@ int parse_kbinput(WINDOW *win) return sc_seq_or(do_next_block, 0); #endif +#if defined(__linux__) && !defined(NANO_TINY) /* When not running under X, check for the bare arrow keys whether * the Ctrl key is being held together with them. */ if (console && (retval == KEY_UP || retval == KEY_DOWN || @@ -521,6 +524,7 @@ int parse_kbinput(WINDOW *win) return sc_seq_or(do_next_word_void, 0); } } +#endif /* __linux__ && !NANO_TINY */ switch (retval) { #ifdef KEY_SLEFT