aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds.c
diff options
context:
space:
mode:
authorPavel Platto <hinidu@gmail.com>2014-06-05 17:11:10 +0300
committerPavel Platto <hinidu@gmail.com>2014-08-02 09:16:59 +0300
commit77cb6551a69108dc734608a18d2305fe57ebd2f2 (patch)
tree2ddb93fa9ea0aa51bbe0662074c24336ae940485 /src/nvim/ex_cmds.c
parent8991609393e8f6ae1248cc312aece546f718e0ec (diff)
downloadrneovim-77cb6551a69108dc734608a18d2305fe57ebd2f2.tar.gz
rneovim-77cb6551a69108dc734608a18d2305fe57ebd2f2.tar.bz2
rneovim-77cb6551a69108dc734608a18d2305fe57ebd2f2.zip
Remove EBCDIC: Remove IF_EB macros
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r--src/nvim/ex_cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c
index c516b24236..180a786ed6 100644
--- a/src/nvim/ex_cmds.c
+++ b/src/nvim/ex_cmds.c
@@ -1933,7 +1933,7 @@ void viminfo_writestring(FILE *fd, char_u *p)
* the string (e.g., variable name). Add something to the length for the
* '<', NL and trailing NUL. */
if (len > LSIZE / 2)
- fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
+ fprintf(fd, "\026%d\n<", len + 3);
while ((c = *p++) != NUL) {
if (c == Ctrl_V || c == '\n') {