summaryrefslogtreecommitdiffstats
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-06-13 15:16:01 +0200
committerBram Moolenaar <Bram@vim.org>2021-06-13 15:16:01 +0200
commitc3a27bbd53a4653c2d8122a047a4cf2cfc52ed21 (patch)
tree8ee330a78cb0694dbbd4b5e3e001b1d820345c03 /src/vim.h
parent6d1792d4085c9905c9da6ff27065b57cb7cddc57 (diff)
patch 8.2.2988: Vim9: debugger test failsv8.2.2988
Problem: Vim9: debugger test fails. Solution: Get the debugger instructions when needed.
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vim.h b/src/vim.h
index 784fa3a8c0..05af5a1882 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -1801,6 +1801,7 @@ typedef enum {
CT_DEBUG // use df_instr_debug, overrules CT_PROFILE
} compiletype_T;
+// Keep in sync with INSTRUCTIONS().
#ifdef FEAT_PROFILE
# define COMPILE_TYPE(ufunc) (debug_break_level > 0 ? CT_DEBUG : do_profiling == PROF_YES && (ufunc)->uf_profiling ? CT_PROFILE : CT_NONE)
#else