From 77207ca84184fc01428154c318b21c70ad150c01 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Sun, 15 Sep 2019 14:50:17 -0400 Subject: [PATCH] Don't add trailing whitespace when passing argument to GDB * lisp/progmodes/gdb-mi.el (gdb-send): Don't append whitespace to 'gdb-continuation'. (Bug#25488) --- lisp/progmodes/gdb-mi.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el index 1c8fad3069c..60852e4ad60 100644 --- a/lisp/progmodes/gdb-mi.el +++ b/lisp/progmodes/gdb-mi.el @@ -1827,7 +1827,7 @@ commands to be prefixed by \"-interpreter-exec console\".") " ")) (setq gdb-first-done-or-error t) (let ((to-send (concat "-interpreter-exec console " - (gdb-mi-quote (concat gdb-continuation string " ")) + (gdb-mi-quote (concat gdb-continuation string)) "\n"))) (if gdb-enable-debug (push (cons 'mi-send to-send) gdb-debug-log)) -- 2.39.5