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/edit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/edit.c') diff --git a/src/nvim/edit.c b/src/nvim/edit.c index 3dddaea39d..314af1222f 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -6072,8 +6072,8 @@ stuff_inserted ( /* a trailing "0" is inserted as "048", "^" as "^" */ if (last) stuffReadbuff((char_u *)(last == '0' - ? IF_EB("\026\060\064\070", CTRL_V_STR "xf0") - : IF_EB("\026^", CTRL_V_STR "^"))); + ? "\026\060\064\070" + : "\026^")); } while (--count > 0); if (last) -- cgit