Skip to content

Commit

Permalink
debbugers: Properly declare realgud:run-process function.
Browse files Browse the repository at this point in the history
This was causing the symbol 'realgud:run-process' to not be found when
using a byte compiled realgud package and launching "realgud:gdb", for
example.

* realgud/debugger/gdb/gdb.el (realgud:run-process): Fix file reference.
* realgud/debugger/gub/gub.el (realgud:run-process): Likewise.
* realgud/debugger/pdb/pdb.el (realgud:run-process): Likewise.
* realgud/debugger/trepan2/trepan2.el (realgud:run-process): Likewise.
* realgud/debugger/trepan3k/trepan3k.el (realgud:run-process): Likewise.
  • Loading branch information
Apteryks committed Jun 6, 2020
1 parent 1238d8e commit bbc78b8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion realgud/debugger/gdb/gdb.el
Expand Up @@ -55,7 +55,7 @@ This should be an executable on your path, or an absolute file name."
(declare-function realgud-command 'realgud:cmds)
(declare-function realgud:gdb-parse-cmd-args 'realgud:gdb-core)
(declare-function realgud:gdb-query-cmdline 'realgud:gdb-core)
(declare-function realgud:run-process 'realgud-core)
(declare-function realgud:run-process 'realgud:run)
(declare-function realgud:flatten 'realgud-utils)

;; -------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion realgud/debugger/gub/gub.el
Expand Up @@ -43,7 +43,7 @@ This should be an executable on your path, or an absolute file name."

(declare-function gub-query-cmdline 'realgud-gub-core)
(declare-function gub-parse-cmd-args 'realgud-gub-core)
(declare-function realgud:run-process 'realgud-core)
(declare-function realgud:run-process 'realgud:run)


(defun realgud-gub-fn (&optional opt-command-line no-reset)
Expand Down
2 changes: 1 addition & 1 deletion realgud/debugger/pdb/pdb.el
Expand Up @@ -48,7 +48,7 @@ This should be an executable on your path, or an absolute file name."
(declare-function pdb-query-cmdline 'realgud:pdb-core)
(declare-function pdb-parse-cmd-args 'realgud:pdb-core)
(declare-function realgud:run-debugger 'realgud:run)
(declare-function realgud:run-process 'realgud:core)
(declare-function realgud:run-process 'realgud:run)
(declare-function realgud:flatten 'realgud-utils)

;;;###autoload
Expand Down
2 changes: 1 addition & 1 deletion realgud/debugger/trepan2/trepan2.el
Expand Up @@ -27,7 +27,7 @@
(declare-function trepan2-parse-cmd-args 'realgud:trepan2-core)
(declare-function trepan2-track-mode 'realgud:pydbgr-track-mode)
(declare-function realgud:run-debugger 'realgud:run)
(declare-function realgud:run-process 'realgud:core)
(declare-function realgud:run-process 'realgud:run)
(declare-function realgud:flatten 'realgud-utils)

;; -------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion realgud/debugger/trepan3k/trepan3k.el
Expand Up @@ -24,7 +24,7 @@
(declare-function trepan3k-query-cmdline 'realgud:trepan3k-core)
(declare-function trepan3k-parse-cmd-args 'realgud:trepan3k-core)
(declare-function realgud:run-debugger 'realgud:run)
(declare-function realgud:run-process 'realgud:core)
(declare-function realgud:run-process 'realgud:run)
(declare-function realgud:flatten 'realgud-utils)

;; -------------------------------------------------------------------
Expand Down

0 comments on commit bbc78b8

Please sign in to comment.