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

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

[elpa] master 260bc5a 187/215: Mark debuggers that don't have "jump".


From: Rocky Bernstein
Subject: [elpa] master 260bc5a 187/215: Mark debuggers that don't have "jump".
Date: Sat, 30 Jul 2016 14:49:05 +0000 (UTC)

branch: master
commit 260bc5a63ea1b7d1f6ae617deb775ed46d88186d
Author: rocky <address@hidden>
Commit: rocky <address@hidden>

    Mark debuggers that don't have "jump".
---
 realgud/debugger/bashdb/init.el    |    5 ++++-
 realgud/debugger/nodejs/init.el    |    5 ++++-
 realgud/debugger/perldb/init.el    |    1 +
 realgud/debugger/remake/init.el    |   18 +++++++++++++++++-
 realgud/debugger/trepan.pl/init.el |    3 +++
 realgud/debugger/zshdb/init.el     |    5 ++++-
 6 files changed, 33 insertions(+), 4 deletions(-)

diff --git a/realgud/debugger/bashdb/init.el b/realgud/debugger/bashdb/init.el
index 81cf9b5..af36b42 100644
--- a/realgud/debugger/bashdb/init.el
+++ b/realgud/debugger/bashdb/init.el
@@ -1,4 +1,4 @@
-;; Copyright (C) 2015 Free Software Foundation, Inc
+;; Copyright (C) 2015, 2016 Free Software Foundation, Inc
 
 ;; Author: Rocky Bernstein <address@hidden>
 
@@ -89,4 +89,7 @@ realgud-loc-pat struct")
 (setf (gethash "quit"   realgud:bashdb-command-hash) "quit!")
 (setf (gethash "until"  realgud:bashdb-command-hash) "continue %l")
 
+;; Unsupported features:
+(setf (gethash "jump"  realgud:bashdb-command-hash) "*not-implemented*")
+
 (provide-me "realgud:bashdb-")
diff --git a/realgud/debugger/nodejs/init.el b/realgud/debugger/nodejs/init.el
index 118eb22..e20211e 100644
--- a/realgud/debugger/nodejs/init.el
+++ b/realgud/debugger/nodejs/init.el
@@ -1,4 +1,4 @@
-;; Copyright (C) 2015 Free Software Foundation, Inc
+;; Copyright (C) 2015, 2016 Free Software Foundation, Inc
 
 ;; Author: Rocky Bernstein <address@hidden>
 
@@ -161,4 +161,7 @@ realgud-loc-pat struct")
 (setf (gethash "step"       realgud:nodejs-command-hash) "step")
 (setf (gethash "next"       realgud:nodejs-command-hash) "next")
 
+;; Unsupported features:
+(setf (gethash "jump"  realgud:nodejs-command-hash) "*not-implemented*")
+
 (provide-me "realgud:nodejs-")
diff --git a/realgud/debugger/perldb/init.el b/realgud/debugger/perldb/init.el
index 9e9c556..27c47c0 100644
--- a/realgud/debugger/perldb/init.el
+++ b/realgud/debugger/perldb/init.el
@@ -139,6 +139,7 @@ realgud-loc-pat struct")
 (setf (gethash "shell" realgud:perldb-command-hash) "*not-implemented*")
 (setf (gethash "up"    realgud:perldb-command-hash) "*not-implemented*")
 (setf (gethash "down"  realgud:perldb-command-hash) "*not-implemented*")
+(setf (gethash "jump"  realgud:perldb-command-hash) "*not-implemented*")
 (setf (gethash "kill"  realgud:perldb-command-hash) "*not-implemented*")
 
 (provide-me "realgud:perldb-")
diff --git a/realgud/debugger/remake/init.el b/realgud/debugger/remake/init.el
index d2888c1..fbaa643 100644
--- a/realgud/debugger/remake/init.el
+++ b/realgud/debugger/remake/init.el
@@ -1,4 +1,18 @@
-;;; Copyright (C) 2011, 2014 Rocky Bernstein <address@hidden>
+;; Copyright (C) 2011, 2014, 2016 Free Software Foundation, Inc
+;; Author: Rocky Bernstein <address@hidden>
+
+;; 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
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 ;;; Regular expressions for GNU Make debugger: remake
 
 (eval-when-compile (require 'cl))
@@ -131,5 +145,7 @@ backtrace listing.")
 (setf (gethash "eval"   realgud:remake-command-hash) "expand %s")
 (setf (gethash "remake" realgud-command-hash) realgud:remake-command-hash)
 
+;; Unsupported features:
+(setf (gethash "jump"  realgud:remake-command-hash) "*not-implemented*")
 
 (provide-me "realgud:remake-")
diff --git a/realgud/debugger/trepan.pl/init.el 
b/realgud/debugger/trepan.pl/init.el
index 8092120..a563295 100644
--- a/realgud/debugger/trepan.pl/init.el
+++ b/realgud/debugger/trepan.pl/init.el
@@ -256,4 +256,7 @@ backtrace listing.")
 (setf (gethash realgud:trepanpl-debugger-name
               realgud-command-hash) realgud:trepanpl-command-hash)
 
+;; Unsupported features:
+(setf (gethash "jump"  realgud:trepanpl-command-hash) "*not-implemented*")
+
 (provide-me "realgud:trepanpl-")
diff --git a/realgud/debugger/zshdb/init.el b/realgud/debugger/zshdb/init.el
index e8bc9ff..a5613c7 100644
--- a/realgud/debugger/zshdb/init.el
+++ b/realgud/debugger/zshdb/init.el
@@ -1,4 +1,4 @@
-;; Copyright (C) 2015 Free Software Foundation, Inc
+;; Copyright (C) 2015, 2016 Free Software Foundation, Inc
 
 ;; Author: Rocky Bernstein <address@hidden>
 
@@ -87,4 +87,7 @@ realgud-loc-pat struct")
 (setf (gethash "quit"   realgud:zshdb-command-hash) "quit")
 (setf (gethash "until"  realgud:zshdb-command-hash) "continue %l")
 
+;; Unsupported features:
+(setf (gethash "jump"  realgud:zshdb-command-hash) "*not-implemented*")
+
 (provide-me "realgud:zshdb-")



reply via email to

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