1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 04:10:27 -08:00

* keyboard.c, keyboard.h (all_kboards): Now static.

This commit is contained in:
Paul Eggert 2013-10-15 06:57:37 -07:00
parent 57f623e268
commit c911772ee8
3 changed files with 5 additions and 4 deletions

View file

@ -1,3 +1,7 @@
2013-10-15 Paul Eggert <eggert@cs.ucla.edu>
* keyboard.c, keyboard.h (all_kboards): Now static.
2013-10-15 Xue Fuqiao <xfq.free@gmail.com>
* buffer.c (syms_of_buffer) <buffer-invisibility-spec>: Add usage

View file

@ -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;

View file

@ -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;