diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-11-09 20:05:47 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-11-09 20:05:47 +0000 |
commit | e0c198038146b7a4a8cc36d4608b35da0fadeaad (patch) | |
tree | 2a6eafb591e02e89d737c18a05fceb31a247fdf1 /sv.h | |
parent | 7f28abaa4e165b43fff1ffa752c03fe884278a53 (diff) | |
download | perl-e0c198038146b7a4a8cc36d4608b35da0fadeaad.tar.gz |
IoDIRP may be fake when used in source filters, mark as such
p4raw-id: //depot/perl@4542
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -318,12 +318,13 @@ struct xpvio { char xio_flags; }; -#define IOf_ARGV 1 /* this fp iterates over ARGV */ -#define IOf_START 2 /* check for null ARGV and substitute '-' */ -#define IOf_FLUSH 4 /* this fp wants a flush after write op */ -#define IOf_DIDTOP 8 /* just did top of form */ -#define IOf_UNTAINT 16 /* consider this fp (and its data) "safe" */ -#define IOf_NOLINE 32 /* slurped a pseudo-line from empty file */ +#define IOf_ARGV 1 /* this fp iterates over ARGV */ +#define IOf_START 2 /* check for null ARGV and substitute '-' */ +#define IOf_FLUSH 4 /* this fp wants a flush after write op */ +#define IOf_DIDTOP 8 /* just did top of form */ +#define IOf_UNTAINT 16 /* consider this fp (and its data) "safe" */ +#define IOf_NOLINE 32 /* slurped a pseudo-line from empty file */ +#define IOf_FAKE_DIRP 64 /* xio_dirp is fake (source filters kludge) */ /* The following macros define implementation-independent predicates on SVs. */ |