mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.2.4273: the EBCDIC support is outdated
Problem: The EBCDIC support is outdated. Solution: Remove the EBCDIC support.
This commit is contained in:
@@ -2208,16 +2208,7 @@ f_tempname(typval_T *argvars UNUSED, typval_T *rettv)
|
||||
else if (x == '9')
|
||||
x = 'A';
|
||||
else
|
||||
{
|
||||
#ifdef EBCDIC
|
||||
if (x == 'I')
|
||||
x = 'J';
|
||||
else if (x == 'R')
|
||||
x = 'S';
|
||||
else
|
||||
#endif
|
||||
++x;
|
||||
}
|
||||
++x;
|
||||
} while (x == 'I' || x == 'O');
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user