File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -1631,6 +1631,7 @@ list are called and their results (which must be lists) are
16311631concatenated. The user can then choose one of them from the
16321632resulting list." )
16331633
1634+ ;;;### autoload
16341635(defun dap-debug (debug-args )
16351636 " Run debug configuration DEBUG-ARGS.
16361637
@@ -1649,11 +1650,11 @@ after selecting configuration template."
16491650 ; ; will fail.
16501651 (let* ((debug-args (dap-variables-expand-in-launch-configuration debug-args))
16511652 (launch-args (or (-some-> (plist-get debug-args :type )
1652- (gethash dap--debug-providers)
1653- (funcall debug-args))
1654- (user-error " Have you loaded the `%s' specific dap package?"
1655- (or (plist-get debug-args :type )
1656- (user-error " %s does not specify :type" debug-args))))))
1653+ (gethash dap--debug-providers)
1654+ (funcall debug-args))
1655+ (user-error " Have you loaded the `%s' specific dap package?"
1656+ (or (plist-get debug-args :type )
1657+ (user-error " %s does not specify :type" debug-args))))))
16571658 (if (functionp launch-args)
16581659 (funcall launch-args #'dap-start-debugging-noexpand )
16591660 (dap-start-debugging-noexpand launch-args))))
You can’t perform that action at this time.
0 commit comments