Skip to content

Commit

Permalink
Fix misgeneration of multi operator dispatchers
Browse files Browse the repository at this point in the history
  • Loading branch information
sorear committed Dec 30, 2011
1 parent f29bd58 commit 95ba995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Kernel.cs
Expand Up @@ -1976,7 +1976,7 @@ public class UsedInScopeInfo {
if (protopad != null) {
li.Init(protopad);

int ix = name.IndexOf(':');
int ix = name.LastIndexOf(':');
LexInfo disp;
if (ix >= 0 && dylex.TryGetValue(name.Substring(0, ix),
out disp) && disp is LIDispatch) {
Expand Down

0 comments on commit 95ba995

Please sign in to comment.