Remove a '#undef ff_next' remnant from ages past.
authorBrian Fraser <fraserbn@gmail.com>
Fri, 30 Aug 2013 21:02:45 +0000 (18:02 -0300)
committerBrian Fraser <fraserbn@gmail.com>
Sat, 21 Sep 2013 11:47:39 +0000 (08:47 -0300)
This was discussed long ago on the list but never actually removed:
http://www.nntp.perl.org/group/perl.perl5.porters/2001/01/msg29492.html

perl.h
toke.c

diff --git a/perl.h b/perl.h
index 1e8e870..87ec913 100644 (file)
--- a/perl.h
+++ b/perl.h
@@ -1482,10 +1482,6 @@ EXTERN_C char *crypt(const char *, const char *);
 #   define S_IEXEC S_IXUSR
 #endif
 
-#ifdef ff_next
-#   undef ff_next
-#endif
-
 #if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
 #   define SLOPPYDIVIDE
 #endif
diff --git a/toke.c b/toke.c
index 257d69b..1208fb2 100644 (file)
--- a/toke.c
+++ b/toke.c
@@ -182,10 +182,6 @@ static const char* const lex_state_names[] = {
 };
 #endif
 
-#ifdef ff_next
-#undef ff_next
-#endif
-
 #include "keywords.h"
 
 /* CLINE is a macro that ensures PL_copline has a sane value */