From b1f8653d43b6bfaf80a44efcb7418bcf898d3af1 Mon Sep 17 00:00:00 2001 From: hjl Date: Thu, 29 Nov 2001 00:00:12 +0000 Subject: 2001-11-26 TAKAI Kousuke * support/nfs/xio.c (xskip): Call `xungetc' instead of `ungetc' to keep x_line more properly. --- support/nfs/xio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'support/nfs/xio.c') diff --git a/support/nfs/xio.c b/support/nfs/xio.c index 9bb5100..3850aab 100644 --- a/support/nfs/xio.c +++ b/support/nfs/xio.c @@ -160,7 +160,7 @@ xskip(XFILE *xfp, char *str) int c; while ((c = xgetc(xfp)) != EOF && strchr(str, c)); - ungetc(c, xfp->x_fp); + xungetc(c, xfp); } char -- cgit