]> matita.cs.unibo.it Git - helm.git/commitdiff
b:action are now considered as m:maction and thus are expanded
authorEnrico Tassi <enrico.tassi@inria.fr>
Mon, 9 Feb 2009 16:06:53 +0000 (16:06 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Mon, 9 Feb 2009 16:06:53 +0000 (16:06 +0000)
helm/software/matita/matitaMathView.ml

index 19eeaf0d7743d7f8788e703c5f0f595ce1fb2fbd..f57dc4d320824cd2e67fb213a5368c5dd596c16a 100644 (file)
@@ -167,7 +167,8 @@ let hrefs_of_elt elt =
 
 let rec has_maction (elt :Gdome.element) = 
   (* fix this comparison *)
-  if elt#get_tagName#to_string = "m:maction" then
+  if elt#get_tagName#to_string = "m:maction" ||
+   elt#get_tagName#to_string = "b:action" then
     true
   else 
     match elt#get_parentNode with