aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-09-12 23:56:35 -0700
committerGlenn Morris2013-09-12 23:56:35 -0700
commit35ffc6ba91d41fab2e370ddb7587ad7fc17bd25b (patch)
treeb36e7c92c93fc1b34b2350f0e0625444d06fbb97
parenta89f3fdfa0809ce575820da4abbd2950c6b0c97a (diff)
downloademacs-35ffc6ba91d41fab2e370ddb7587ad7fc17bd25b.tar.gz
emacs-35ffc6ba91d41fab2e370ddb7587ad7fc17bd25b.zip
* lisp/progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/gdb-mi.el5
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index de9b8d91516..a05bdb99e26 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12013-09-13 Glenn Morris <rgm@gnu.org>
2
3 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
4
12013-09-13 Michael Albinus <michael.albinus@gmx.de> 52013-09-13 Michael Albinus <michael.albinus@gmx.de>
2 6
3 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from 7 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
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."
3257 gud-stop-subjob 3257 gud-stop-subjob
3258 "Interrupt thread at current line.") 3258 "Interrupt thread at current line.")
3259 3259
3260;; Defined opaquely in M-x gdb via gud-def.
3261(declare-function gud-cont "gdb-mi" (arg) t)
3262
3260(def-gdb-thread-buffer-gud-command 3263(def-gdb-thread-buffer-gud-command
3261 gdb-continue-thread 3264 gdb-continue-thread
3262 gud-cont 3265 gud-cont
3263 "Continue thread at current line.") 3266 "Continue thread at current line.")
3264 3267
3268(declare-function gud-step "gdb-mi" (arg) t)
3269
3265(def-gdb-thread-buffer-gud-command 3270(def-gdb-thread-buffer-gud-command
3266 gdb-step-thread 3271 gdb-step-thread
3267 gud-step 3272 gud-step