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

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

[elpa] master 0c201fb 51/56: Last change distributed a bit over other de


From: Rocky Bernstein
Subject: [elpa] master 0c201fb 51/56: Last change distributed a bit over other debuggers
Date: Sat, 27 May 2017 05:02:38 -0400 (EDT)

branch: master
commit 0c201fb44e012107423fff3ab45fa8a0711e8d8a
Author: rocky <address@hidden>
Commit: rocky <address@hidden>

    Last change distributed a bit over other debuggers
---
 realgud.el                        | 3 ++-
 realgud/debugger/bashdb/core.el   | 4 ++--
 realgud/debugger/gdb/core.el      | 2 +-
 realgud/debugger/gub/core.el      | 2 +-
 realgud/debugger/ipdb/core.el     | 4 ++--
 realgud/debugger/jdb/core.el      | 2 +-
 realgud/debugger/kshdb/core.el    | 2 +-
 realgud/debugger/nodejs/core.el   | 4 ++--
 realgud/debugger/trepan3k/core.el | 4 ++--
 9 files changed, 14 insertions(+), 13 deletions(-)

diff --git a/realgud.el b/realgud.el
index 2035b9d..dde1b50 100644
--- a/realgud.el
+++ b/realgud.el
@@ -5,8 +5,9 @@
 ;; Package-Type: multi
 ;; Package-Requires: ((load-relative "1.2") (loc-changes "1.2") (test-simple  
"1.2.0") (cl-lib "0.5") (emacs "24"))
 ;; URL: http://github.com/realgud/realgud/
+;; Keywords: gdb, python, perl, go, bash, nodejs, zsh, bashdb, zshdb, remake, 
make, trepan, perldb
 
-;; Copyright (C) 2015-2016 Free Software Foundation, Inc
+;; Copyright (C) 2015-2017 Free Software Foundation, Inc
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
diff --git a/realgud/debugger/bashdb/core.el b/realgud/debugger/bashdb/core.el
index 87c371c..155b09b 100644
--- a/realgud/debugger/bashdb/core.el
+++ b/realgud/debugger/bashdb/core.el
@@ -1,4 +1,4 @@
-;; Copyright (C) 2015-2016 Free Software Foundation, Inc
+;; Copyright (C) 2015-2017 Free Software Foundation, Inc
 
 ;; Author: Rocky Bernstein <address@hidden>
 
@@ -165,7 +165,7 @@ Note that path elements have been expanded via 
`realgud:expand-file-name-if-exis
 
 (defun bashdb-suggest-invocation (debugger-name)
   "Suggest a bashdb command invocation via `realgud-suggest-invocaton'"
-  (realgud-suggest-invocation realgud:bashdb-command-name
+  (realgud-suggest-invocation (or debugger-name realgud:bashdb-command-name)
                              realgud:bashdb-minibuffer-history
                              "sh" "\\.\\(?:ba\\)?sh$"
                              realgud:bashdb-command-name))
diff --git a/realgud/debugger/gdb/core.el b/realgud/debugger/gdb/core.el
index 35fc492..0c49a3c 100644
--- a/realgud/debugger/gdb/core.el
+++ b/realgud/debugger/gdb/core.el
@@ -1,4 +1,4 @@
-;; Copyright (C) 2015-2016 Free Software Foundation, Inc
+;; Copyright (C) 2015-2017 Free Software Foundation, Inc
 
 ;; Author: Rocky Bernstein <address@hidden>
 
diff --git a/realgud/debugger/gub/core.el b/realgud/debugger/gub/core.el
index d6d13da..df444b7 100644
--- a/realgud/debugger/gub/core.el
+++ b/realgud/debugger/gub/core.el
@@ -117,7 +117,7 @@ NOTE: the above should have each item listed in quotes.
 
 (defun gub-suggest-invocation (debugger-name)
   "Suggest a command invocation via `realgud-suggest-invocaton'"
-  (realgud-suggest-invocation realgud:gub-command-name
+  (realgud-suggest-invocation (or debugger-name realgud:gub-command-name)
                              realgud:gub-minibuffer-history
                              "go" "\\.go$"))
 
diff --git a/realgud/debugger/ipdb/core.el b/realgud/debugger/ipdb/core.el
index 8d64e6a..12939f2 100644
--- a/realgud/debugger/ipdb/core.el
+++ b/realgud/debugger/ipdb/core.el
@@ -1,4 +1,4 @@
-;; Copyright (C) 2016 Free Software Foundation, Inc
+;; Copyright (C) 2016-2017 Free Software Foundation, Inc
 
 ;; Author: Sean Farley <address@hidden>, Rocky Bernstein (address@hidden)
 
@@ -180,7 +180,7 @@ Note that the script name path has been expanded via 
`expand-file-name'.
 
 (defun ipdb-suggest-invocation (debugger-name)
   "Suggest a ipdb command invocation via `realgud-suggest-invocaton'"
-  (realgud-suggest-invocation realgud:ipdb-command-name
+  (realgud-suggest-invocation (or debugger-name realgud:ipdb-command-name)
                              realgud:ipdb-minibuffer-history
                              "python" "\\.py"))
 
diff --git a/realgud/debugger/jdb/core.el b/realgud/debugger/jdb/core.el
index 34064e1..2d8b543 100644
--- a/realgud/debugger/jdb/core.el
+++ b/realgud/debugger/jdb/core.el
@@ -159,7 +159,7 @@ Note that the script name path has been expanded via 
`expand-file-name'.
 
 (defun jdb-suggest-invocation (debugger-name)
   "Suggest a jdb command invocation via `realgud-suggest-invocaton'"
-  (realgud-suggest-invocation realgud:jdb-command-name
+  (realgud-suggest-invocation (or debugger-name realgud:jdb-command-name)
                              realgud:jdb-minibuffer-history
                              "java" "\\.java$" "jdb"))
 
diff --git a/realgud/debugger/kshdb/core.el b/realgud/debugger/kshdb/core.el
index afcb119..a9dd6a8 100644
--- a/realgud/debugger/kshdb/core.el
+++ b/realgud/debugger/kshdb/core.el
@@ -144,7 +144,7 @@ NOTE: the above should have each item listed in quotes.
 
 (defun kshdb-suggest-invocation (debugger-name)
   "Suggest a kshdb command invocation via `realgud-suggest-invocaton'"
-  (realgud-suggest-invocation realgud:kshdb-command-name
+  (realgud-suggest-invocation (or debugger-name realgud:kshdb-command-name)
                              realgud:kshdb-minibuffer-history
                              "sh" "\\.\\(?:k\\)?sh$"))
 
diff --git a/realgud/debugger/nodejs/core.el b/realgud/debugger/nodejs/core.el
index 065ac37..f27b4ed 100644
--- a/realgud/debugger/nodejs/core.el
+++ b/realgud/debugger/nodejs/core.el
@@ -1,4 +1,4 @@
-;; Copyright (C) 2015-2016 Free Software Foundation, Inc
+;; Copyright (C) 2015-2017 Free Software Foundation, Inc
 
 ;; Author: Rocky Bernstein <address@hidden>
 
@@ -126,7 +126,7 @@ Note that path elements have been expanded via 
`expand-file-name'.
 
 (defun realgud:nodejs-suggest-invocation (debugger-name)
   "Suggest a nodejs command invocation via `realgud-suggest-invocaton'"
-  (realgud-suggest-invocation realgud:nodejs-command-name
+  (realgud-suggest-invocation (or debugger-name realgud:nodejs-command-name)
                              realgud:nodejs-minibuffer-history
                              "js" "\\.js$"))
 
diff --git a/realgud/debugger/trepan3k/core.el 
b/realgud/debugger/trepan3k/core.el
index 6806a00..215949f 100644
--- a/realgud/debugger/trepan3k/core.el
+++ b/realgud/debugger/trepan3k/core.el
@@ -1,4 +1,4 @@
-;; Copyright (C) 2010, 2012-2016 Free Software Foundation, Inc
+;; Copyright (C) 2010, 2012-2017 Free Software Foundation, Inc
 
 ;; Author: Rocky Bernstein <address@hidden>
 
@@ -155,7 +155,7 @@ NOTE: the above should have each item listed in quotes.
 
 (defun trepan3k-suggest-invocation (debugger-name)
   "Suggest a trepan3k command invocation via `realgud-suggest-invocaton'"
-  (realgud-suggest-invocation realgud:trepan3k-command-name
+  (realgud-suggest-invocation (or debugger-name realgud:trepan2-command-name)
                              realgud:trepan3k-minibuffer-history
                              "python" "\\.py"
                              realgud:trepan3k-command-name))



reply via email to

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