Commit 16482f99 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

tweaks: unglobalize the nodelay_mode variable

No related merge requests found
Showing with 2 additions and 5 deletions
+2 -5
...@@ -149,9 +149,6 @@ char *quoteerr = NULL; ...@@ -149,9 +149,6 @@ char *quoteerr = NULL;
char *word_chars = NULL; char *word_chars = NULL;
/* Nonalphanumeric characters that also form words. */ /* Nonalphanumeric characters that also form words. */
bool nodelay_mode = FALSE;
/* Are we checking for a cancel wile doing something? */
char *answer = NULL; char *answer = NULL;
/* The answer string used by the statusbar prompt. */ /* The answer string used by the statusbar prompt. */
......
...@@ -121,8 +121,6 @@ extern char *quoteerr; ...@@ -121,8 +121,6 @@ extern char *quoteerr;
extern char *word_chars; extern char *word_chars;
extern bool nodelay_mode;
extern char *answer; extern char *answer;
extern ssize_t tabsize; extern ssize_t tabsize;
......
...@@ -45,6 +45,8 @@ static size_t key_buffer_len = 0; ...@@ -45,6 +45,8 @@ static size_t key_buffer_len = 0;
/* The length of the keystroke buffer. */ /* The length of the keystroke buffer. */
static bool solitary = FALSE; static bool solitary = FALSE;
/* Whether an Esc arrived by itself -- not as leader of a sequence. */ /* Whether an Esc arrived by itself -- not as leader of a sequence. */
static nodelay_mode = FALSE;
/* Whether we will check for a Cancel now and then during a search. */
static int statusblank = 0; static int statusblank = 0;
/* The number of keystrokes left before we blank the statusbar. */ /* The number of keystrokes left before we blank the statusbar. */
#ifdef USING_OLD_NCURSES #ifdef USING_OLD_NCURSES
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment