File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
runtime/pack/dist/opt/termdebug/plugin Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,8 @@ func s:StartDebug_term(dict)
200200 let response = ' '
201201 for lnum in range (1 ,200 )
202202 if term_getline (s: gdbbuf , lnum) = ~ ' new-ui mi '
203- let response = term_getline (s: gdbbuf , lnum + 1 )
203+ " response can be in the same line or the next line
204+ let response = term_getline (s: gdbbuf , lnum) . term_getline (s: gdbbuf , lnum + 1 )
204205 if response = ~ ' Undefined command'
205206 echoerr ' Sorry, your gdb is too old, gdb 7.12 is required'
206207 exe ' bwipe! ' . s: ptybuf
Original file line number Diff line number Diff line change @@ -789,6 +789,8 @@ static char *(features[]) =
789789
790790static int included_patches [] =
791791{ /* Add new patch number below this line */
792+ /**/
793+ 196 ,
792794/**/
793795 195 ,
794796/**/
You can’t perform that action at this time.
0 commit comments