aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 3404c60a93a..50c1d5a43b8 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -678,7 +678,9 @@ static void save_getcjmp ();
678static void restore_getcjmp P_ ((jmp_buf)); 678static void restore_getcjmp P_ ((jmp_buf));
679static Lisp_Object apply_modifiers P_ ((int, Lisp_Object)); 679static Lisp_Object apply_modifiers P_ ((int, Lisp_Object));
680static void clear_event P_ ((struct input_event *)); 680static void clear_event P_ ((struct input_event *));
681#ifdef MULTI_KBOARD
681static Lisp_Object restore_kboard_configuration P_ ((Lisp_Object)); 682static Lisp_Object restore_kboard_configuration P_ ((Lisp_Object));
683#endif
682static SIGTYPE interrupt_signal P_ ((int signalnum)); 684static SIGTYPE interrupt_signal P_ ((int signalnum));
683static void handle_interrupt P_ ((void)); 685static void handle_interrupt P_ ((void));
684static void timer_start_idle P_ ((void)); 686static void timer_start_idle P_ ((void));
@@ -1222,6 +1224,7 @@ record_single_kboard_state ()
1222} 1224}
1223#endif 1225#endif
1224 1226
1227#ifdef MULTI_KBOARD
1225static Lisp_Object 1228static Lisp_Object
1226restore_kboard_configuration (was_locked) 1229restore_kboard_configuration (was_locked)
1227 Lisp_Object was_locked; 1230 Lisp_Object was_locked;
@@ -1239,6 +1242,8 @@ restore_kboard_configuration (was_locked)
1239 } 1242 }
1240 return Qnil; 1243 return Qnil;
1241} 1244}
1245#endif
1246
1242 1247
1243/* Handle errors that are not handled at inner levels 1248/* Handle errors that are not handled at inner levels
1244 by printing an error message and returning to the editor command loop. */ 1249 by printing an error message and returning to the editor command loop. */