comparison src/libvterm/t/harness.c @ 20460:c15dd3da4f47 v8.2.0784

patch 8.2.0784: libvterm code lags behind the upstream version Commit: https://github.com/vim/vim/commit/94d729cbe8f0f788d9d7539f733cff395e73b228 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 17 21:50:16 2020 +0200 patch 8.2.0784: libvterm code lags behind the upstream version Problem: Libvterm code lags behind the upstream version. Solution: Include revisions 730 - 733.
author Bram Moolenaar <Bram@vim.org>
date Sun, 17 May 2020 22:00:04 +0200
parents ffadba5f898c
children dc88c690f19b
comparison
equal deleted inserted replaced
20459:8d6f1cfef895 20460:c15dd3da4f47
481 *nl = '\0'; 481 *nl = '\0';
482 482
483 if(streq(line, "INIT")) { 483 if(streq(line, "INIT")) {
484 if(!vt) 484 if(!vt)
485 vt = vterm_new(25, 80); 485 vt = vterm_new(25, 80);
486
487 // Somehow this makes tests fail
488 // vterm_output_set_callback(vt, term_output, NULL);
486 } 489 }
487 490
488 else if(streq(line, "WANTPARSER")) { 491 else if(streq(line, "WANTPARSER")) {
489 vterm_parser_set_callbacks(vt, &parser_cbs, NULL); 492 vterm_parser_set_callbacks(vt, &parser_cbs, NULL);
490 } 493 }