aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/gdb-mi.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el
index 58552759b95..84b8c6b44b1 100644
--- a/lisp/progmodes/gdb-mi.el
+++ b/lisp/progmodes/gdb-mi.el
@@ -2717,10 +2717,10 @@ If `default-directory' is remote, full file names are adapted accordingly."
2717 (insert "]")))))) 2717 (insert "]"))))))
2718 (goto-char (point-min)) 2718 (goto-char (point-min))
2719 (insert "{") 2719 (insert "{")
2720 (let ((re (concat "\\([[:alnum:]-_]+\\)=\\({\\|\\[\\|\"\"\\|" 2720 (let ((re (concat "\\([[:alnum:]-_]+\\)=")))
2721 gdb--string-regexp "\\)")))
2722 (while (re-search-forward re nil t) 2721 (while (re-search-forward re nil t)
2723 (replace-match "\"\\1\":\\2" nil nil))) 2722 (replace-match "\"\\1\":" nil nil)
2723 (if (eq (char-after) ?\") (forward-sexp) (forward-char))))
2724 (goto-char (point-max)) 2724 (goto-char (point-max))
2725 (insert "}"))) 2725 (insert "}")))
2726 2726