commit | 46f3080e5cd4cd1bae23e72a429a8195eb1ded7a | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Feb 05 12:10:52 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Feb 05 12:10:52 2022 +0000 |
tree | cfe9dcd9a2796ea0c34ffb0372fd03692254dc8d | |
parent | fc88df42f1ae64bcc4d6cbc0fbd3445f8c59afdf [diff] [blame] |
patch 8.2.4299: SafeState autocommand interferes with debugging Problem: SafeState autocommand interferes with debugging. Solution: Do not trigger SafeState while debugging. (closes #9697)
diff --git a/src/main.c b/src/main.c index fa5d8f1..389d570 100644 --- a/src/main.c +++ b/src/main.c
@@ -1047,7 +1047,8 @@ return stuff_empty() && typebuf.tb_len == 0 && scriptin[curscript] == NULL - && !global_busy; + && !global_busy + && !debug_mode; } /*