From 424bcae1fb0f69e0aef5e0cf84fd771cf34a0fb7 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 31 Jan 2022 14:59:41 +0000 Subject: patch 8.2.4273: the EBCDIC support is outdated Problem: The EBCDIC support is outdated. Solution: Remove the EBCDIC support. --- src/map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/map.c') diff --git a/src/map.c b/src/map.c index 8d60eee25..e45ea757e 100644 --- a/src/map.c +++ b/src/map.c @@ -2018,7 +2018,7 @@ put_escstr(FILE *fd, char_u *strstart, int what) { if (what == 2) { - if (fprintf(fd, IF_EB("\\\026\n", "\\" CTRL_V_STR "\n")) < 0) + if (fprintf(fd, "\\\026\n") < 0) return FAIL; } else -- cgit v1.2.1