0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.2.0216: several Vim9 instructions are not tested

Problem:    Several Vim9 instructions are not tested.
Solution:   Add more tests. Fix :disassamble output. Make catch with pattern
            work.
This commit is contained in:
Bram Moolenaar
2020-02-05 22:10:05 +01:00
parent a78e9c61a0
commit ff80cb6807
4 changed files with 78 additions and 7 deletions

View File

@@ -1726,7 +1726,7 @@ ex_disassemble(exarg_T *eap)
char_u *tofree;
r = blob2string(iptr->isn_arg.blob, &tofree, numbuf);
smsg("%4d PUSHBLOB \"%s\"", current, r);
smsg("%4d PUSHBLOB %s", current, r);
vim_free(tofree);
}
break;