comparison src/screen.c @ 27490:fb4c30606b4a v8.2.4273

patch 8.2.4273: the EBCDIC support is outdated Commit: https://github.com/vim/vim/commit/424bcae1fb0f69e0aef5e0cf84fd771cf34a0fb7 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 31 14:59:41 2022 +0000 patch 8.2.4273: the EBCDIC support is outdated Problem: The EBCDIC support is outdated. Solution: Remove the EBCDIC support.
author Bram Moolenaar <Bram@vim.org>
date Mon, 31 Jan 2022 16:00:09 +0100
parents bce848ec8b1b
children 9c96612730a0
comparison
equal deleted inserted replaced
27489:9f00e1edb43c 27490:fb4c30606b4a
1794 if (gui.in_use) 1794 if (gui.in_use)
1795 { 1795 {
1796 char buf[20]; 1796 char buf[20];
1797 1797
1798 // The GUI handles this internally. 1798 // The GUI handles this internally.
1799 sprintf(buf, IF_EB("\033|%dh", ESC_STR "|%dh"), attr); 1799 sprintf(buf, "\033|%dh", attr);
1800 OUT_STR(buf); 1800 OUT_STR(buf);
1801 } 1801 }
1802 else 1802 else
1803 #endif 1803 #endif
1804 { 1804 {
1944 if (gui.in_use) 1944 if (gui.in_use)
1945 { 1945 {
1946 char buf[20]; 1946 char buf[20];
1947 1947
1948 // use internal GUI code 1948 // use internal GUI code
1949 sprintf(buf, IF_EB("\033|%dH", ESC_STR "|%dH"), screen_attr); 1949 sprintf(buf, "\033|%dH", screen_attr);
1950 OUT_STR(buf); 1950 OUT_STR(buf);
1951 } 1951 }
1952 else 1952 else
1953 #endif 1953 #endif
1954 { 1954 {