comparison src/libvterm/src/vterm_internal.h @ 30894:bf4f25d50fdd v9.0.0781

patch 9.0.0781: workaround to rename "small" to "smallfont" is clumsy Commit: https://github.com/vim/vim/commit/e6a16e9950111adfcfdb85261b3d5a8c13f1d533 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Oct 17 14:51:36 2022 +0100 patch 9.0.0781: workaround to rename "small" to "smallfont" is clumsy Problem: Workaround to rename "small" to "smallfont" is clumsy. Solution: Undefine "small" after including windows.h. (Ken Takata)
author Bram Moolenaar <Bram@vim.org>
date Mon, 17 Oct 2022 16:00:04 +0200
parents ac9464a32606
children dcde141f2d1e
comparison
equal deleted inserted replaced
30893:5795425ca42f 30894:bf4f25d50fdd
58 unsigned int blink:1; 58 unsigned int blink:1;
59 unsigned int reverse:1; 59 unsigned int reverse:1;
60 unsigned int conceal:1; 60 unsigned int conceal:1;
61 unsigned int strike:1; 61 unsigned int strike:1;
62 unsigned int font:4; /* To store 0-9 */ 62 unsigned int font:4; /* To store 0-9 */
63 unsigned int smallfont:1; 63 unsigned int small:1;
64 unsigned int baseline:2; 64 unsigned int baseline:2;
65 }; 65 };
66 66
67 struct VTermState 67 struct VTermState
68 { 68 {