In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/1f933721fdfb02e4d62d10a1a69032d38d4db05d?hp=2850478b7555b16cccb2e9234c8a939af507940b>

- Log -----------------------------------------------------------------
commit 1f933721fdfb02e4d62d10a1a69032d38d4db05d
Author: Rafael Garcia-Suarez <r...@consttype.org>
Date:   Wed Nov 24 14:43:30 2010 +0100

    Don't use "try" as a variable name
    
    "try" being a C++ keyword, this produces compilation warnings.
-----------------------------------------------------------------------

Summary of changes:
 regexec.c |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/regexec.c b/regexec.c
index f43e6e4..375d4fd 100644
--- a/regexec.c
+++ b/regexec.c
@@ -6397,32 +6397,32 @@ S_reginclass(pTHX_ const regexp * const prog, register 
const regnode * const n,
                                    IV i;
                                    for (i = 0; i <= av_len(list); i++) {
                                        SV** try_p = av_fetch(list, i, FALSE);
-                                       char* try;
+                                       char* try_c;
                                        if (try_p == NULL) {
                                            Perl_croak(aTHX_ "panic: invalid 
PL_utf8_foldclosures structure");
                                        }
                                        /* Don't have to worry about embeded
                                         * nulls since NULL isn't folded or
                                         * foldable */
-                                       try = SvPVX(*try_p);
-                                       if (UTF8_IS_INVARIANT(*try)
+                                       try_c = SvPVX(*try_p);
+                                       if (UTF8_IS_INVARIANT(*try_c)
                                            && ANYOF_BITMAP_TEST(n,
-                                                           
UNI_TO_NATIVE(*try)))
+                                                           
UNI_TO_NATIVE(*try_c)))
                                        {
                                            match = TRUE;
                                            break;
                                        }
                                        else if
-                                           (UTF8_IS_DOWNGRADEABLE_START(*try)
+                                           (UTF8_IS_DOWNGRADEABLE_START(*try_c)
                                             && ANYOF_BITMAP_TEST(n,
                                             UNI_TO_NATIVE(
-                                               TWO_BYTE_UTF8_TO_UNI(try[0],
-                                                                    try[1]))))
+                                               TWO_BYTE_UTF8_TO_UNI(try_c[0],
+                                                                    
try_c[1]))))
                                        {
                                            match = TRUE;
                                            break;
                                        } else if (swash_fetch(sw,
-                                                               (U8*) try, 1))
+                                                               (U8*) try_c, 1))
                                        {
                                            match = TRUE;
                                            break;

--
Perl5 Master Repository

Reply via email to