diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-06-14 20:40:37 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-06-14 20:40:37 +0200 |
commit | b69c6fb7b423ddc4578b093cb19257cad459dfae (patch) | |
tree | 609d4100420eca145bc91dad37fefde05500475d /src/debugger.c | |
parent | 90478f35a8c78e2e10a4b4a8f135998dc04c91fa (diff) | |
download | vim-git-b69c6fb7b423ddc4578b093cb19257cad459dfae.tar.gz |
patch 8.2.2996: Vim9: when debugging cannot inspect local variablesv8.2.2996
Problem: Vim9: when debugging cannot inspect local variables.
Solution: Make local variables available when debugging.
Diffstat (limited to 'src/debugger.c')
-rw-r--r-- | src/debugger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debugger.c b/src/debugger.c index 9c3c4a178..b96846310 100644 --- a/src/debugger.c +++ b/src/debugger.c @@ -218,7 +218,7 @@ do_debug(char_u *cmd) if (last_cmd != 0) { - // Execute debug command: decided where to break next and + // Execute debug command: decide where to break next and // return. switch (last_cmd) { |