summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Dubois <jand@activestate.com>2009-11-16 15:01:26 -0800
committerJan Dubois <jand@activestate.com>2009-11-16 15:03:15 -0800
commitedb47d5e45750eb7ab61981e15a22f43672ff4f4 (patch)
treea43c95b9d407b54fa33d23794292264e8734b68d
parent490354310ada83dc35c6cfd9dd59ad62781fcaf7 (diff)
downloadperl-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.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/toke.c b/toke.c
index 6b5ef4f3d9..a17dc4cde8 100644
--- a/toke.c
+++ b/toke.c
@@ -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);