0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.0343: Vim9: using wrong instruction, limited test coverage

Problem:    Vim9: using wrong instruction, limited test coverage.
Solution:   Use ISN_PUSHJOB.  Add a few more tests.
This commit is contained in:
Bram Moolenaar
2020-03-01 17:55:14 +01:00
parent 0546d7df13
commit f51cb4e08e
5 changed files with 64 additions and 2 deletions

View File

@@ -1915,7 +1915,7 @@ ex_disassemble(exarg_T *eap)
tv.v_type = VAR_JOB;
tv.vval.v_job = iptr->isn_arg.job;
name = tv_get_string(&tv);
smsg("%4d PUSHJOB %s", current, name);
smsg("%4d PUSHJOB \"%s\"", current, name);
}
#endif
break;