diff options
| author | Sean Dewar <seandewar@users.noreply.github.com> | 2021-09-13 17:09:15 +0100 |
|---|---|---|
| committer | Sean Dewar <seandewar@users.noreply.github.com> | 2021-09-13 17:24:07 +0100 |
| commit | 31ac33bf772b17d6a0553b97889aeaf3a5227419 (patch) | |
| tree | e64d3cc65318671b80bea152371a9eb910e30bde /src/nvim/testdir | |
| parent | 936c4ae1519c6d30a02d328214f8b797bfbd7738 (diff) | |
| download | rneovim-31ac33bf772b17d6a0553b97889aeaf3a5227419.tar.gz rneovim-31ac33bf772b17d6a0553b97889aeaf3a5227419.tar.bz2 rneovim-31ac33bf772b17d6a0553b97889aeaf3a5227419.zip | |
vim-patch:8.2.3419: a failing debug expression may make Vim unusable
Problem: A failing debug expression may make Vim unusable.
Solution: Suppress error messages. (closes vim/vim#8848)
https://github.com/vim/vim/commit/0325d3967ce7d0fd35bc1472fd476b911b895b76
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_debugger.vim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_debugger.vim b/src/nvim/testdir/test_debugger.vim index c6d6a90275..a396efc09e 100644 --- a/src/nvim/testdir/test_debugger.vim +++ b/src/nvim/testdir/test_debugger.vim @@ -267,9 +267,7 @@ func Test_Debugger() call RunDbgCmd(buf, 'breakd func a()', ['E475: Invalid argument: func a()']) call RunDbgCmd(buf, 'breakd func a', ['E161: Breakpoint not found: func a']) call RunDbgCmd(buf, 'breakd expr', ['E475: Invalid argument: expr']) - call RunDbgCmd(buf, 'breakd expr x', [ - \ 'E121: Undefined variable: x', - \ 'E161: Breakpoint not found: expr x']) + call RunDbgCmd(buf, 'breakd expr x', ['E161: Breakpoint not found: expr x']) " finish the current function call RunDbgCmd(buf, 'finish', [ |