comparison src/terminal.c @ 30880:82336c3b679d v9.0.0774

patch 9.0.0774: the libvterm code is outdated Commit: https://github.com/vim/vim/commit/6a12d26f3404e45ce25cf9152857e355b28f392a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 16 19:26:52 2022 +0100 patch 9.0.0774: the libvterm code is outdated Problem: The libvterm code is outdated. Solution: Include libvterm changes from revision 802 to 817. Revert some changes made for C89.
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Oct 2022 20:30:07 +0200
parents 82e62fd4eae9
children 360f286b5869
comparison
equal deleted inserted replaced
30879:2db86b9d26df 30880:82336c3b679d
3445 handle_movecursor, // movecursor 3445 handle_movecursor, // movecursor
3446 handle_settermprop, // settermprop 3446 handle_settermprop, // settermprop
3447 handle_bell, // bell 3447 handle_bell, // bell
3448 handle_resize, // resize 3448 handle_resize, // resize
3449 handle_pushline, // sb_pushline 3449 handle_pushline, // sb_pushline
3450 NULL // sb_popline 3450 NULL, // sb_popline
3451 NULL // sb_clear
3451 }; 3452 };
3452 3453
3453 /* 3454 /*
3454 * Do the work after the channel of a terminal was closed. 3455 * Do the work after the channel of a terminal was closed.
3455 * Must be called only when updating_screen is FALSE. 3456 * Must be called only when updating_screen is FALSE.