]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix minor problems found by --enable-gcc-warnings.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 16 Jul 2013 14:52:22 +0000 (07:52 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 16 Jul 2013 14:52:22 +0000 (07:52 -0700)
* frame.c (Fhandle_focus_in, Fhandle_focus_out): Return a value.
* keyboard.c (kbd_buffer_get_event): Remove unused local.

src/ChangeLog
src/frame.c
src/keyboard.c

index 7c3548c4f84340976c1ecfb7360b36cb2ad7b5d6..3f597ec63b137933aa27086a4e4230c487e9d99b 100644 (file)
@@ -1,3 +1,9 @@
+2013-07-16  Paul Eggert  <eggert@cs.ucla.edu>
+
+       Fix minor problems found by --enable-gcc-warnings.
+       * frame.c (Fhandle_focus_in, Fhandle_focus_out): Return a value.
+       * keyboard.c (kbd_buffer_get_event): Remove unused local.
+
 2013-07-16  Jan Djärv  <jan.h.d@swipnet.se>
 
        * xterm.c (x_focus_changed): Always generate FOCUS_IN_EVENT.
index 5bd9f777755e5054777eed3dfd592b4608120527..5fa54052cd2ba1b1ea4939d543070d256d75e00e 100644 (file)
@@ -895,7 +895,7 @@ is not generated.
 This function checks if blink-cursor timers should be turned on again.  */)
   (Lisp_Object event)
 {
-  call0 (intern ("blink-cursor-check"));
+  return call0 (intern ("blink-cursor-check"));
 }
 
 DEFUN ("handle-focus-out", Fhandle_focus_out, Shandle_focus_out, 1, 1, "e",
@@ -905,7 +905,7 @@ Focus out events occur when no frame has focus.
 This function checks if blink-cursor timers should be turned off.  */)
   (Lisp_Object event)
 {
-  call0 (intern ("blink-cursor-suspend"));
+  return call0 (intern ("blink-cursor-suspend"));
 }
 
 DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 1, "e",
index 5cdb87818caff39cbc331c6580298b2bfb87e229..e852fb65cdd90e1433f950a88f5a5d28e8427e74 100644 (file)
@@ -4092,7 +4092,7 @@ kbd_buffer_get_event (KBOARD **kbp,
 #else
           struct x_display_info *di;
 #endif
-          Lisp_Object rest, frame = event->frame_or_window;
+          Lisp_Object frame = event->frame_or_window;
           bool focused = false;
 
           for (di = x_display_list; di && ! focused; di = di->next)