diff options
author | Jan Dubois <jand@activestate.com> | 2009-11-16 15:01:26 -0800 |
---|---|---|
committer | Jan Dubois <jand@activestate.com> | 2009-11-16 15:03:15 -0800 |
commit | edb47d5e45750eb7ab61981e15a22f43672ff4f4 (patch) | |
tree | a43c95b9d407b54fa33d23794292264e8734b68d | |
parent | 490354310ada83dc35c6cfd9dd59ad62781fcaf7 (diff) | |
download | perl-edb47d5e45750eb7ab61981e15a22f43672ff4f4.tar.gz |
Remove dead preprocessor code from toke.c
The symbol FTELL_FOR_PIPE_IS_BROKEN is no longer being used
and should have been removed with the commit 4c84d7f2, which
removed the -P option.
-rw-r--r-- | toke.c | 13 |
1 files changed, 0 insertions, 13 deletions
@@ -4337,19 +4337,6 @@ Perl_yylex(pTHX) *(U8*)s == 0xEF || *(U8*)s >= 0xFE || s[1] == 0)) { -#ifdef PERLIO_IS_STDIO -# ifdef __GNU_LIBRARY__ -# if __GNU_LIBRARY__ == 1 /* Linux glibc5 */ -# define FTELL_FOR_PIPE_IS_BROKEN -# endif -# else -# ifdef __GLIBC__ -# if __GLIBC__ == 1 /* maybe some glibc5 release had it like this? */ -# define FTELL_FOR_PIPE_IS_BROKEN -# endif -# endif -# endif -#endif bof = PerlIO_tell(PL_rsfp) == (Off_t)SvCUR(PL_linestr); if (bof) { PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr); |