projects
/
m17n
/
m17n-lib-cs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b60cbb
)
*** empty log message ***
author
handa
<handa>
Fri, 18 Sep 2009 10:48:17 +0000
(10:48 +0000)
committer
handa
<handa>
Fri, 18 Sep 2009 10:48:17 +0000
(10:48 +0000)
XmlExpr.cs
patch
|
blob
|
history
diff --git
a/XmlExpr.cs
b/XmlExpr.cs
index
3efb27d
..
86048c8
100644
(file)
--- a/
XmlExpr.cs
+++ b/
XmlExpr.cs
@@
-451,7
+451,13
@@
namespace System.Xml.Expression
internal void ThrowReturn ()
{
- catch_list.Peek ().count = catchcount;
+ CatchTag tag = catch_list.Peek ();
+ while (tag.name != Nreturn)
+ {
+ catch_list.Pop ();
+ tag = catch_list.Peek ();
+ }
+ catchcount = tag.count;
}
internal void ThrowBreak ()