We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11431a2 commit b407773Copy full SHA for b407773
dap-mode.el
@@ -1924,12 +1924,12 @@ the new template can be used normally with `dap-debug'"
1924
(insert " (list ")
1925
(-let ((column (current-column))
1926
((fst snd . rst) debug-args))
1927
- (insert (format "%s %s" fst snd))
+ (insert (format "%s %S" fst snd))
1928
(cl-loop for (k v) on rst by #'cddr
1929
do (unless (eq k :program-to-start)
1930
(insert "\n")
1931
(insert-char ?\s column)
1932
- (insert (format "%s %s" k v)))))
+ (insert (format "%s %S" k v)))))
1933
(insert "))"))
1934
(pop-to-buffer "*DAP Templates*")
1935
(goto-char (point-max)))
0 commit comments