We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When reading a new file it says "read (garbage) lines". Here is a fix:
RCS file: \cvsroot/uemacspd/src/echo.c,v retrieving revision 1.2 retrieving revision 1.3 diff -c -r1.2 -r1.3 *** echo.c 8 Jul 2023 05:58:43 -0000 1.2 --- echo.c 8 Jul 2023 06:14:02 -0000 1.3
*** 363,376 ****
/* --- 363,382 ----
va_list ap;
va_start(ap, fp);
ttcolor(CTEXT); ttmove(nrow-1, 0); eformat(fp, ap); tteeol(); ttflush(); epresf = TRUE;
va_end(ap);
}
/*
C:\devel\uemacspd\src>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When reading a new file it says "read (garbage) lines". Here is a fix:
C:\devel\uemacspd\src>cvs diff -c -r 1.2 echo.c
Index: echo.c
RCS file: \cvsroot/uemacspd/src/echo.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -c -r1.2 -r1.3
*** echo.c 8 Jul 2023 05:58:43 -0000 1.2
--- echo.c 8 Jul 2023 06:14:02 -0000 1.3
*** 363,376 ****
/
! void eprintf(char fp, va_list ap)
{
ttcolor(CTEXT);
ttmove(nrow-1, 0);
eformat(fp, ap);
tteeol();
ttflush();
epresf = TRUE;
}
/*
--- 363,382 ----
/
! void eprintf(char fp, ...)
{
}
/*
C:\devel\uemacspd\src>
The text was updated successfully, but these errors were encountered: