[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master 77207ca: Don't add trailing whitespace when passing
From: |
Stefan Kangas |
Subject: |
[Emacs-diffs] master 77207ca: Don't add trailing whitespace when passing argument to GDB |
Date: |
Wed, 2 Oct 2019 09:10:58 -0400 (EDT) |
branch: master
commit 77207ca84184fc01428154c318b21c70ad150c01
Author: Sergio Durigan Junior <address@hidden>
Commit: Stefan Kangas <address@hidden>
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 1c8fad3..60852e4 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))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master 77207ca: Don't add trailing whitespace when passing argument to GDB,
Stefan Kangas <=