diff options
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/term.c b/src/term.c index 514c7ad11ec..23e074287c1 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -21,7 +21,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 21 | 21 | ||
| 22 | #include <config.h> | 22 | #include <config.h> |
| 23 | #include <stdio.h> | 23 | #include <stdio.h> |
| 24 | #include <ctype.h> | ||
| 25 | #include <errno.h> | 24 | #include <errno.h> |
| 26 | #include <sys/file.h> | 25 | #include <sys/file.h> |
| 27 | #include <sys/time.h> | 26 | #include <sys/time.h> |
| @@ -1333,7 +1332,7 @@ term_get_fkeys_1 (void) | |||
| 1333 | 1332 | ||
| 1334 | /* This can happen if CANNOT_DUMP or with strange options. */ | 1333 | /* This can happen if CANNOT_DUMP or with strange options. */ |
| 1335 | if (!KEYMAPP (KVAR (kboard, Vinput_decode_map))) | 1334 | if (!KEYMAPP (KVAR (kboard, Vinput_decode_map))) |
| 1336 | KSET (kboard, Vinput_decode_map, Fmake_sparse_keymap (Qnil)); | 1335 | kset_input_decode_map (kboard, Fmake_sparse_keymap (Qnil)); |
| 1337 | 1336 | ||
| 1338 | for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++) | 1337 | for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++) |
| 1339 | { | 1338 | { |
| @@ -3281,7 +3280,7 @@ use the Bourne shell command `TERM=... export TERM' (C-shell:\n\ | |||
| 3281 | 3280 | ||
| 3282 | terminal->kboard = xmalloc (sizeof *terminal->kboard); | 3281 | terminal->kboard = xmalloc (sizeof *terminal->kboard); |
| 3283 | init_kboard (terminal->kboard); | 3282 | init_kboard (terminal->kboard); |
| 3284 | KSET (terminal->kboard, Vwindow_system, Qnil); | 3283 | kset_window_system (terminal->kboard, Qnil); |
| 3285 | terminal->kboard->next_kboard = all_kboards; | 3284 | terminal->kboard->next_kboard = all_kboards; |
| 3286 | all_kboards = terminal->kboard; | 3285 | all_kboards = terminal->kboard; |
| 3287 | terminal->kboard->reference_count++; | 3286 | terminal->kboard->reference_count++; |