Mercurial > hg > xemacs-beta
diff src/lstream.c @ 1943:1d840489238d
[xemacs-hg @ 2004-03-08 15:41:31 by james]
Lutz Euler's fix for Lstream_pseudo_close: missing parentheses.
author | james |
---|---|
date | Mon, 08 Mar 2004 15:41:36 +0000 |
parents | a8d8f419b459 |
children | 04bc9d2f42c7 |
line wrap: on
line diff
--- a/src/lstream.c Mon Mar 08 15:23:03 2004 +0000 +++ b/src/lstream.c Mon Mar 08 15:41:36 2004 +0000 @@ -777,7 +777,7 @@ static int Lstream_pseudo_close (Lstream *lstr) { - if (!lstr->flags & LSTREAM_FL_IS_OPEN) + if (! (lstr->flags & LSTREAM_FL_IS_OPEN)) Lstream_internal_error ("lstream is not open", lstr); /* don't check errors here -- best not to risk file descriptor loss */