Remove _window_changed from lshcontext

This commit is contained in:
Brendan Shanks 2018-07-30 22:25:27 -07:00
parent c791d602bf
commit e133135151
2 changed files with 0 additions and 4 deletions

View File

@ -5,7 +5,6 @@
#include <pthread.h>
#include <setjmp.h>
#include <signal.h>
#include "lsh_types.h"
#include "lsh.h"
@ -45,8 +44,6 @@ typedef struct lshcontext {
int _verbosing;
int _debugging;
sig_atomic_t _window_changed;
char *_envv[4]; // "HOME", "LOGNAME", "TERM", "DISPLAY"
char _term[64]; // home and logname never change
char _display[64]; // home and logname never change

View File

@ -1028,7 +1028,6 @@ void init_context(lshcontext *context, short port)
context->_tracing = 0;
context->_verbosing = 0;
context->_debugging = 0;
context->_window_changed = 0;
context->_kpassword[0] = 0;
context->_kindex = 0;
context->_pindex = 0;