aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2016-12-27 15:27:40 -0800
committerPaul Eggert2016-12-27 15:28:57 -0800
commit112460da705c2a6716d7b6bc72501de0a3757259 (patch)
treed61f6c969ccad6b3965ffc315abe33a5982cd1a3 /src
parentaebe6592db7da893fcedb56a3fb4b66ce3de2057 (diff)
downloademacs-112460da705c2a6716d7b6bc72501de0a3757259.tar.gz
emacs-112460da705c2a6716d7b6bc72501de0a3757259.zip
; fix indenting
Problem reported by Chris Gregory in: http://lists.gnu.org/archive/html/emacs-devel/2016-12/msg00968.html * src/keyboard.c (read_event_from_main_queue): Fix indenting.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index f2ee313b8c9..15c7f5ff8c6 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -2162,9 +2162,9 @@ read_event_from_main_queue (struct timespec *end_time,
2162 if (CONSP (last)) 2162 if (CONSP (last))
2163 { 2163 {
2164 while (CONSP (XCDR (last))) 2164 while (CONSP (XCDR (last)))
2165 last = XCDR (last); 2165 last = XCDR (last);
2166 if (!NILP (XCDR (last))) 2166 if (!NILP (XCDR (last)))
2167 emacs_abort (); 2167 emacs_abort ();
2168 } 2168 }
2169 if (!CONSP (last)) 2169 if (!CONSP (last))
2170 kset_kbd_queue (kb, list1 (c)); 2170 kset_kbd_queue (kb, list1 (c));