]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
Rename 'id' to 'hint' for consistency
authorVincent Pit <vince@profvince.com>
Sun, 24 May 2009 14:34:31 +0000 (16:34 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 24 May 2009 14:34:31 +0000 (16:34 +0200)
indirect.xs

index 896ae7f591338b40e75a0d06e33940aea9af135c..206a991d4ac1039366952f709cb010f66256303e 100644 (file)
@@ -186,7 +186,6 @@ STATIC void indirect_thread_cleanup(pTHX_ void *);
 
 STATIC void indirect_thread_cleanup(pTHX_ void *ud) {
  int *level = ud;
 
 STATIC void indirect_thread_cleanup(pTHX_ void *ud) {
  int *level = ud;
- SV  *id;
 
  if (*level) {
   *level = 0;
 
  if (*level) {
   *level = 0;
@@ -255,21 +254,21 @@ STATIC U32 indirect_hash = 0;
 
 STATIC SV *indirect_hint(pTHX) {
 #define indirect_hint() indirect_hint(aTHX)
 
 STATIC SV *indirect_hint(pTHX) {
 #define indirect_hint() indirect_hint(aTHX)
- SV *id;
+ SV *hint;
 #if I_HAS_PERL(5, 9, 5)
 #if I_HAS_PERL(5, 9, 5)
id = Perl_refcounted_he_fetch(aTHX_ PL_curcop->cop_hints_hash,
-                                     NULL,
-                                     __PACKAGE__, __PACKAGE_LEN__,
-                                     0,
-                                     indirect_hash);
hint = Perl_refcounted_he_fetch(aTHX_ PL_curcop->cop_hints_hash,
+                                       NULL,
+                                       __PACKAGE__, __PACKAGE_LEN__,
+                                       0,
+                                       indirect_hash);
 #else
  SV **val = hv_fetch(GvHV(PL_hintgv), __PACKAGE__, __PACKAGE_LEN__,
                                                                  indirect_hash);
  if (!val)
   return 0;
 #else
  SV **val = hv_fetch(GvHV(PL_hintgv), __PACKAGE__, __PACKAGE_LEN__,
                                                                  indirect_hash);
  if (!val)
   return 0;
id = *val;
hint = *val;
 #endif
 #endif
- return (id && SvOK(id)) ? id : NULL;
+ return (hint && SvOK(hint)) ? hint : NULL;
 }
 
 /* ... op -> source position ............................................... */
 }
 
 /* ... op -> source position ............................................... */