summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergio Durigan Junior <sergiodj@sergiodj.net>2019-09-15 14:50:17 -0400
committerStefan Kangas <stefankangas@gmail.com>2019-10-02 15:08:02 +0200
commit77207ca84184fc01428154c318b21c70ad150c01 (patch)
tree6e76a07923b5290e7c74af33a912a9aba269b6c2
parentb0043f688a8dbddb6a976304ddaa91eb87690436 (diff)
downloademacs-77207ca84184fc01428154c318b21c70ad150c01.tar.gz
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)
-rw-r--r--lisp/progmodes/gdb-mi.el2
1 files changed, 1 insertions, 1 deletions
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))