Commit 3decb42e authored by Russ Cox's avatar Russ Cox

add warning for export of lowercase too.

R=ken
OCL=22887
CL=22887
parent 07d344e4
......@@ -75,8 +75,11 @@ autoexport(Sym *s)
if(dcladj != exportsym)
warn("uppercase missing export");
exportsym(s);
} else
} else {
if(dcladj == exportsym)
warn("export missing uppercase");
packagesym(s);
}
}
void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment