emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/realgud f70405f 38/72: Correct some declare-function lo


From: Stefan Monnier
Subject: [elpa] externals/realgud f70405f 38/72: Correct some declare-function locations
Date: Fri, 26 Mar 2021 22:49:09 -0400 (EDT)

branch: externals/realgud
commit f70405fa961e1fcd7a20217785db59cd08663038
Author: rocky <rocky@gnu.org>
Commit: rocky <rocky@gnu.org>

    Correct some declare-function locations
    
    Thanks to Apteryks. See:
    
    
https://github.com/Apteryks/realgud/commit/bbc78b863bc80ce1be53cc5a5f9e222ae4e884a8
---
 realgud/debugger/gdb/gdb.el           | 2 +-
 realgud/debugger/gub/gub.el           | 5 +++--
 realgud/debugger/pdb/pdb.el           | 4 ++--
 realgud/debugger/trepan2/trepan2.el   | 4 ++--
 realgud/debugger/trepan3k/trepan3k.el | 4 ++--
 5 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/realgud/debugger/gdb/gdb.el b/realgud/debugger/gdb/gdb.el
index dbbf247..eae0020 100644
--- a/realgud/debugger/gdb/gdb.el
+++ b/realgud/debugger/gdb/gdb.el
@@ -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)
 
 ;; -------------------------------------------------------------------
diff --git a/realgud/debugger/gub/gub.el b/realgud/debugger/gub/gub.el
index 2033e0e..8ab88e1 100644
--- a/realgud/debugger/gub/gub.el
+++ b/realgud/debugger/gub/gub.el
@@ -1,4 +1,4 @@
-;; Copyright (C) 2015 Free Software Foundation, Inc
+;; Copyright (C) 2015, 2020 Free Software Foundation, Inc
 ;; Author: Rocky Bernstein <rocky@gnu.org>
 
 ;; This program is free software: you can redistribute it and/or
@@ -19,6 +19,7 @@
 (require 'load-relative)
 (require-relative-list '("../../common/helper") "realgud-")
 (require-relative-list '("../../common/track") "realgud-")
+(require-relative-list '("../../common/run") "realgud-")
 (require-relative-list '("core" "track-mode") "realgud:gub-")
 
 (eval-when-compile (require 'cl-lib))
@@ -43,7 +44,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)
diff --git a/realgud/debugger/pdb/pdb.el b/realgud/debugger/pdb/pdb.el
index 22a8994..0ec4c6a 100644
--- a/realgud/debugger/pdb/pdb.el
+++ b/realgud/debugger/pdb/pdb.el
@@ -1,4 +1,4 @@
-;; Copyright (C) 2015-2017, 2019 Free Software Foundation, Inc
+;; Copyright (C) 2015-2017, 2019-2020 Free Software Foundation, Inc
 
 ;; Author: Rocky Bernstein <rocky@gnu.org>
 
@@ -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
diff --git a/realgud/debugger/trepan2/trepan2.el 
b/realgud/debugger/trepan2/trepan2.el
index d3e15a1..d855612 100644
--- a/realgud/debugger/trepan2/trepan2.el
+++ b/realgud/debugger/trepan2/trepan2.el
@@ -1,4 +1,4 @@
-;; Copyright (C) 2010-2012, 2014-2017 Free Software Foundation, Inc
+;; Copyright (C) 2010-2012, 2014-2017, 2020 Free Software Foundation, Inc
 
 ;; Author: Rocky Bernstein <rocky@gnu.org>
 
@@ -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)
 
 ;; -------------------------------------------------------------------
diff --git a/realgud/debugger/trepan3k/trepan3k.el 
b/realgud/debugger/trepan3k/trepan3k.el
index 7d3dc07..7a3cb74 100644
--- a/realgud/debugger/trepan3k/trepan3k.el
+++ b/realgud/debugger/trepan3k/trepan3k.el
@@ -1,4 +1,4 @@
-;; Copyright (C) 2010-2014, 2016-2017 Free Software Foundation, Inc
+;; Copyright (C) 2010-2014, 2016-2017, 2020 Free Software Foundation, Inc
 
 ;; Author: Rocky Bernstein <rocky@gnu.org>
 
@@ -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)
 
 ;; -------------------------------------------------------------------



reply via email to

[Prev in Thread] Current Thread [Next in Thread]