We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b96e429 commit 05b3188Copy full SHA for 05b3188
.gdbinit
@@ -346,7 +346,7 @@ def fetch_breakpoints(watchpoints=False, pending=False):
346
parsed_breakpoints[number] = [address_info], is_pending, ''
347
elif len(fields) >= 5 and fields[1] == 'catchpoint':
348
# only take before comma, but ignore commas in quotes
349
- what = catch_what_regex.search(' '.join(fields[4:]))[0].strip()
+ what = catch_what_regex.search(' '.join(fields[4:])).group(0).strip()
350
parsed_breakpoints[number] = [], False, what
351
elif len(fields) >= 3 and number in parsed_breakpoints:
352
# add this address to the list of multiple locations
0 commit comments