From 77cb6551a69108dc734608a18d2305fe57ebd2f2 Mon Sep 17 00:00:00 2001 From: Pavel Platto Date: Thu, 5 Jun 2014 17:11:10 +0300 Subject: Remove EBCDIC: Remove IF_EB macros --- src/nvim/getchar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/getchar.c') diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index b4e5b3f5dd..e98bb2744c 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -4076,7 +4076,7 @@ int put_escstr(FILE *fd, char_u *strstart, int what) */ if (c == NL) { if (what == 2) { - if (fprintf(fd, IF_EB("\\\026\n", "\\" CTRL_V_STR "\n")) < 0) + if (fprintf(fd, "\\\026\n") < 0) return FAIL; } else { if (fprintf(fd, "") < 0) -- cgit