From: Paul Eggert Date: Tue, 15 Oct 2013 13:57:37 +0000 (-0700) Subject: * keyboard.c, keyboard.h (all_kboards): Now static. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1261 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c911772ee8de21bab0b5ba63fac19fc7dc377f45;p=emacs.git * keyboard.c, keyboard.h (all_kboards): Now static. --- diff --git a/src/ChangeLog b/src/ChangeLog index 025ddfa3425..08f8f50e1fe 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2013-10-15 Paul Eggert + + * keyboard.c, keyboard.h (all_kboards): Now static. + 2013-10-15 Xue Fuqiao * buffer.c (syms_of_buffer) : Add usage diff --git a/src/keyboard.c b/src/keyboard.c index e0cd4d4fda0..bb8fefa7046 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -82,7 +82,7 @@ volatile bool pending_signals; KBOARD *initial_kboard; KBOARD *current_kboard; -KBOARD *all_kboards; +static KBOARD *all_kboards; /* True in the single-kboard state, false in the any-kboard state. */ static bool single_kboard; diff --git a/src/keyboard.h b/src/keyboard.h index 6f5593bdf65..b9bb006b4ed 100644 --- a/src/keyboard.h +++ b/src/keyboard.h @@ -227,9 +227,6 @@ extern KBOARD *initial_kboard; right now considering input. We can consider input from another kboard, but doing so requires throwing to wrong_kboard_jmpbuf. */ extern KBOARD *current_kboard; - -/* A list of all kboard objects, linked through next_kboard. */ -extern KBOARD *all_kboards; /* Total number of times read_char has returned, modulo UINTMAX_MAX + 1. */ extern uintmax_t num_input_events;