summaryrefslogtreecommitdiff
path: root/src/testdir/test_excmd.vim
diff options
context:
space:
mode:
Diffstat (limited to 'src/testdir/test_excmd.vim')
-rw-r--r--src/testdir/test_excmd.vim8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/testdir/test_excmd.vim b/src/testdir/test_excmd.vim
index b080575e4..c3a911f6c 100644
--- a/src/testdir/test_excmd.vim
+++ b/src/testdir/test_excmd.vim
@@ -647,4 +647,12 @@ func Test_command_not_implemented_E319()
endif
endfunc
+func Test_not_break_expression_register()
+ call setreg('=', '1+1')
+ if 0
+ put =1
+ endif
+ call assert_equal('1+1', getreg('=', 1))
+endfunc
+
" vim: shiftwidth=2 sts=2 expandtab