branch: externals/realgud commit 4bcbb89c88a911e7d954b85556062ca0d39a72ac Author: rocky <ro...@gnu.org> Commit: rocky <ro...@gnu.org>
Last commit introduced a couple of bugs --- realgud/debugger/kshdb/init.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/realgud/debugger/kshdb/init.el b/realgud/debugger/kshdb/init.el index 68cb3cf..238eaff 100644 --- a/realgud/debugger/kshdb/init.el +++ b/realgud/debugger/kshdb/init.el @@ -88,12 +88,12 @@ realgud-loc-pat struct") (setf (gethash "kshdb" realgud-pat-hash) realgud:kshdb-pat-hash) -(setf (gethash "kshdb" realgud-command-hash) realgud:kshdb-command-hash) - (defvar realgud:kshdb-command-hash (make-hash-table :test 'equal) "hash key is command name like 'quit' and the value is the trepan command to use, like 'quit!'") +(setf (gethash "kshdb" realgud-command-hash) realgud:kshdb-command-hash) + ;; (setf (gethash "quit" realgud:kshdb-command-hash) "quit!") @@ -103,6 +103,6 @@ realgud-loc-pat struct") (setf (gethash "until" realgud:kshdb-command-hash) "continue %l") ;; Unsupported features: -(setf (gethash "jump" realgud:bashdb-command-hash) "*not-implemented*") +(setf (gethash "jump" realgud:kshdb-command-hash) "*not-implemented*") (provide-me "realgud:kshdb-")