/[emacs]/emacs/src/lread.c
ViewVC logotype

Diff of /emacs/src/lread.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.324 by monnier, Tue Nov 23 05:06:56 2004 UTC revision 1.325 by monnier, Thu Nov 25 20:01:18 2004 UTC
# Line 1  Line 1 
1  /* Lisp parsing and input streams.  /* Lisp parsing and input streams.
2     Copyright (C) 1985,86,87,88,89,93,94,95,97,98,99,2000,01,03,2004     Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995, 1997, 1998,
3        Free Software Foundation, Inc.       1999, 2000, 2001, 2003, 2004  Free Software Foundation, Inc.
4    
5  This file is part of GNU Emacs.  This file is part of GNU Emacs.
6    
# Line 322  readchar (readcharfun) Line 322  readchar (readcharfun)
322        /* Interrupted reads have been observed while reading over the network */        /* Interrupted reads have been observed while reading over the network */
323        while (c == EOF && ferror (instream) && errno == EINTR)        while (c == EOF && ferror (instream) && errno == EINTR)
324          {          {
325              QUIT;
326            clearerr (instream);            clearerr (instream);
327            c = getc (instream);            c = getc (instream);
328          }          }

Legend:
Removed from v.1.324  
changed lines
  Added in v.1.325

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26