branch: externals/realgud commit c7594f0baa175418a04d591bc1d0e881c294883e Author: rocky <ro...@gnu.org> Commit: rocky <ro...@gnu.org>
wrong 'let' syntax - caught thanks to the jodonnell's test! --- realgud/common/track.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/realgud/common/track.el b/realgud/common/track.el index 4140974..088e1cc 100644 --- a/realgud/common/track.el +++ b/realgud/common/track.el @@ -189,7 +189,7 @@ message." (defun realgud:eval-command-p(text) "Checks the TEXT if the command that was ran was an eval command." - (let (cmd-name (realgud:get-command-name "eval")) + (let ((cmd-name (realgud:get-command-name "eval"))) (and (stringp cmd-name) (string-prefix-p (realgud:get-command-name "eval") (realgud:get-output-command text))))) (defun realgud:truncate-eval-message(text)