Skip to content

Commit

Permalink
patch 8.2.3057: Vim9: debugger test fails with normal features and +t…
Browse files Browse the repository at this point in the history
…erminal

Problem:    Vim9: debugger test fails with normal features and +terminal.
            (Dominique Pellé)
Solution:   Adjust the INSTRUCTIONS macro. (closes #8460)
  • Loading branch information
brammool committed Jun 26, 2021
1 parent 14ded11 commit 307dec4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -755,6 +755,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
3057,
/**/
3056,
/**/
Expand Down
2 changes: 1 addition & 1 deletion src/vim9.h
Expand Up @@ -518,7 +518,7 @@ extern garray_T def_functions;
: (dfunc)->df_instr))
#else
# define INSTRUCTIONS(dfunc) \
(debug_break_level > 0 \
(debug_break_level > 0 || dfunc->df_ufunc->uf_has_breakpoint \
? (dfunc)->df_instr_debug \
: (dfunc)->df_instr)
#endif

0 comments on commit 307dec4

Please sign in to comment.