projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
9bafe91
)
make attributes::reftype(*FOO{IO}) return "IO" instead of "UNKNOWN"
Gurusamy Sarathy [Fri, 17 Mar 2000 04:13:27 +0000 (
04:13
+0000)]
(from Tom Christiansen)
p4raw-id: //depot/perl@5777
sv.c
patch
|
blob
|
blame
|
history
diff --git
a/sv.c
b/sv.c
index
ff21757
..
e2b740d
100644
(file)
--- a/
sv.c
+++ b/
sv.c
@@
-5168,6
+5168,7
@@
Perl_sv_reftype(pTHX_ SV *sv, int ob)
case SVt_PVCV: return "CODE";
case SVt_PVGV: return "GLOB";
case SVt_PVFM: return "FORMAT";
+ case SVt_PVIO: return "IO";
default: return "UNKNOWN";
}
}