mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
Various improvements to undo file code to make it more robust.
This commit is contained in:
@@ -6134,7 +6134,7 @@ emsgn(s, n)
|
||||
get2c(fd)
|
||||
FILE *fd;
|
||||
{
|
||||
long n;
|
||||
int n;
|
||||
|
||||
n = getc(fd);
|
||||
n = (n << 8) + getc(fd);
|
||||
@@ -6148,7 +6148,7 @@ get2c(fd)
|
||||
get3c(fd)
|
||||
FILE *fd;
|
||||
{
|
||||
long n;
|
||||
int n;
|
||||
|
||||
n = getc(fd);
|
||||
n = (n << 8) + getc(fd);
|
||||
@@ -6163,7 +6163,7 @@ get3c(fd)
|
||||
get4c(fd)
|
||||
FILE *fd;
|
||||
{
|
||||
long n;
|
||||
int n;
|
||||
|
||||
n = getc(fd);
|
||||
n = (n << 8) + getc(fd);
|
||||
|
Reference in New Issue
Block a user