* lisp/progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
authorGlenn Morris <rgm@gnu.org>
Fri, 13 Sep 2013 06:56:35 +0000 (23:56 -0700)
committerGlenn Morris <rgm@gnu.org>
Fri, 13 Sep 2013 06:56:35 +0000 (23:56 -0700)
lisp/ChangeLog
lisp/progmodes/gdb-mi.el

index de9b8d9..a05bdb9 100644 (file)
@@ -1,3 +1,7 @@
+2013-09-13  Glenn Morris  <rgm@gnu.org>
+
+       * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
+
 2013-09-13  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
index 2017636..2f1f7b3 100644 (file)
@@ -3257,11 +3257,16 @@ line."
   gud-stop-subjob
   "Interrupt thread at current line.")
 
+;; Defined opaquely in M-x gdb via gud-def.
+(declare-function gud-cont "gdb-mi" (arg) t)
+
 (def-gdb-thread-buffer-gud-command
   gdb-continue-thread
   gud-cont
   "Continue thread at current line.")
 
+(declare-function gud-step "gdb-mi" (arg) t)
+
 (def-gdb-thread-buffer-gud-command
   gdb-step-thread
   gud-step