Skip to content
Snippets Groups Projects
Commit 49f39f6d authored by sof's avatar sof
Browse files

[project @ 1998-03-04 10:16:05 by sof]

addAvailEnv: restrict previous change to not redo
duplicate checks.
parent 08c5cc05
No related branches found
No related tags found
No related merge requests found
......@@ -419,10 +419,11 @@ addAvailEnv warn_dups ie env avail
occ_avail = nameOccName (availName avail)
occ_ie = ieOcc ie
key
| occ_ie == occ_avail = occ_avail
| otherwise = occ_ie
| not warn_dups || occ_ie == occ_avail = occ_avail
| otherwise = occ_ie
-- export item is a class method, use export occ name instead.
-- (this is only needed to get more precise warnings about
-- duplicates.)
elt = (ie,avail,reports_on)
reports_on
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment