summaryrefslogtreecommitdiff
path: root/lisp/progmodes/gdb-mi.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2013-09-12 23:56:35 -0700
committerGlenn Morris <rgm@gnu.org>2013-09-12 23:56:35 -0700
commit35ffc6ba91d41fab2e370ddb7587ad7fc17bd25b (patch)
treeb36e7c92c93fc1b34b2350f0e0625444d06fbb97 /lisp/progmodes/gdb-mi.el
parenta89f3fdfa0809ce575820da4abbd2950c6b0c97a (diff)
downloademacs-35ffc6ba91d41fab2e370ddb7587ad7fc17bd25b.tar.gz
emacs-35ffc6ba91d41fab2e370ddb7587ad7fc17bd25b.tar.bz2
emacs-35ffc6ba91d41fab2e370ddb7587ad7fc17bd25b.zip
* lisp/progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
Diffstat (limited to 'lisp/progmodes/gdb-mi.el')
-rw-r--r--lisp/progmodes/gdb-mi.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el
index 2017636435c..2f1f7b3c8d3 100644
--- a/lisp/progmodes/gdb-mi.el
+++ b/lisp/progmodes/gdb-mi.el
@@ -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