emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r114670: * keyboard.c, keyboard.h (all_kboards): Now


From: Paul Eggert
Subject: [Emacs-diffs] trunk r114670: * keyboard.c, keyboard.h (all_kboards): Now static.
Date: Tue, 15 Oct 2013 13:57:41 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114670
revision-id: address@hidden
parent: address@hidden
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Tue 2013-10-15 06:57:37 -0700
message:
  * keyboard.c, keyboard.h (all_kboards): Now static.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/keyboard.c                 keyboard.c-20091113204419-o5vbwnq5f7feedwu-449
  src/keyboard.h                 keyboard.h-20091113204419-o5vbwnq5f7feedwu-450
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-10-15 12:47:57 +0000
+++ b/src/ChangeLog     2013-10-15 13:57:37 +0000
@@ -1,3 +1,7 @@
+2013-10-15  Paul Eggert  <address@hidden>
+
+       * keyboard.c, keyboard.h (all_kboards): Now static.
+
 2013-10-15  Xue Fuqiao  <address@hidden>
 
        * buffer.c (syms_of_buffer) <buffer-invisibility-spec>: Add usage

=== modified file 'src/keyboard.c'
--- a/src/keyboard.c    2013-10-10 10:06:17 +0000
+++ b/src/keyboard.c    2013-10-15 13:57:37 +0000
@@ -82,7 +82,7 @@
 
 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;

=== modified file 'src/keyboard.h'
--- a/src/keyboard.h    2013-10-10 10:06:17 +0000
+++ b/src/keyboard.h    2013-10-15 13:57:37 +0000
@@ -227,9 +227,6 @@
    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;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]