aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2013-10-15 06:57:37 -0700
committerPaul Eggert2013-10-15 06:57:37 -0700
commitc911772ee8de21bab0b5ba63fac19fc7dc377f45 (patch)
treedc29335ad02e307ab331ae9612fcc9f9bab0ad13 /src
parent57f623e268a3d765676d0d30e9c9065a3a9d8dc1 (diff)
downloademacs-c911772ee8de21bab0b5ba63fac19fc7dc377f45.tar.gz
emacs-c911772ee8de21bab0b5ba63fac19fc7dc377f45.zip
* keyboard.c, keyboard.h (all_kboards): Now static.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/keyboard.c2
-rw-r--r--src/keyboard.h3
3 files changed, 5 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 025ddfa3425..08f8f50e1fe 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12013-10-15 Paul Eggert <eggert@cs.ucla.edu>
2
3 * keyboard.c, keyboard.h (all_kboards): Now static.
4
12013-10-15 Xue Fuqiao <xfq.free@gmail.com> 52013-10-15 Xue Fuqiao <xfq.free@gmail.com>
2 6
3 * buffer.c (syms_of_buffer) <buffer-invisibility-spec>: Add usage 7 * buffer.c (syms_of_buffer) <buffer-invisibility-spec>: 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;
82 82
83KBOARD *initial_kboard; 83KBOARD *initial_kboard;
84KBOARD *current_kboard; 84KBOARD *current_kboard;
85KBOARD *all_kboards; 85static KBOARD *all_kboards;
86 86
87/* True in the single-kboard state, false in the any-kboard state. */ 87/* True in the single-kboard state, false in the any-kboard state. */
88static bool single_kboard; 88static 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;
227 right now considering input. We can consider input from another 227 right now considering input. We can consider input from another
228 kboard, but doing so requires throwing to wrong_kboard_jmpbuf. */ 228 kboard, but doing so requires throwing to wrong_kboard_jmpbuf. */
229extern KBOARD *current_kboard; 229extern KBOARD *current_kboard;
230
231/* A list of all kboard objects, linked through next_kboard. */
232extern KBOARD *all_kboards;
233 230
234/* Total number of times read_char has returned, modulo UINTMAX_MAX + 1. */ 231/* Total number of times read_char has returned, modulo UINTMAX_MAX + 1. */
235extern uintmax_t num_input_events; 232extern uintmax_t num_input_events;