diff options
| -rw-r--r-- | lisp/progmodes/gdb-ui.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el index 657e8531278..ef11668f022 100644 --- a/lisp/progmodes/gdb-ui.el +++ b/lisp/progmodes/gdb-ui.el | |||
| @@ -3484,9 +3484,9 @@ is set in them." | |||
| 3484 | (gdb-enqueue-input | 3484 | (gdb-enqueue-input |
| 3485 | (list | 3485 | (list |
| 3486 | (if (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer) 'gdba) | 3486 | (if (eq (buffer-local-value 'gud-minor-mode gud-comint-buffer) 'gdba) |
| 3487 | (concat "server interpreter mi \"-var-list-children --all-values " | 3487 | (concat "server interpreter mi \"-var-list-children --all-values \\\"" |
| 3488 | varnum "\"\n") | 3488 | varnum "\\\"\"\n") |
| 3489 | (concat "-var-list-children --all-values " varnum "\n")) | 3489 | (concat "-var-list-children --all-values \"" varnum "\"\n")) |
| 3490 | `(lambda () (gdb-var-list-children-handler-1 ,varnum))))) | 3490 | `(lambda () (gdb-var-list-children-handler-1 ,varnum))))) |
| 3491 | 3491 | ||
| 3492 | (defconst gdb-var-list-children-regexp-1 | 3492 | (defconst gdb-var-list-children-regexp-1 |