From: Glenn Morris Date: Fri, 13 Sep 2013 06:56:35 +0000 (-0700) Subject: * lisp/progmodes/gdb-mi.el (gud-cont, gud-step): Declare. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1650 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=35ffc6ba91d41fab2e370ddb7587ad7fc17bd25b;p=emacs.git * lisp/progmodes/gdb-mi.el (gud-cont, gud-step): Declare. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index de9b8d91516..a05bdb99e26 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2013-09-13 Glenn Morris + + * progmodes/gdb-mi.el (gud-cont, gud-step): Declare. + 2013-09-13 Michael Albinus * 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." 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