projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
0aa93af
)
Make C<no FOO> fail if C<unimport FOO> fails
Tim Bunce [Mon, 18 Nov 1996 06:06:15 +0000 (18:06 +1200)]
gv.c
patch
|
blob
|
blame
|
history
diff --git
a/gv.c
b/gv.c
index
a7cee3f
..
e825187
100644
(file)
--- a/
gv.c
+++ b/
gv.c
@@
-276,7
+276,7
@@
char* name;
if (!gv) {
CV* cv;
- if (strEQ(name,"import") || strEQ(name,"unimport"))
+ if (strEQ(name,"import"))
gv = (GV*)&sv_yes;
else if (strNE(name, "AUTOLOAD")) {
gv = gv_fetchmeth(stash, "AUTOLOAD", 8, 0);