This bug causes Amaya to be unable to recognize the "⇔" entity when loading a file. The cause is in the file "Amaya/amaya/MathMLbuilder.c", in line 30 (for Amaya 2.1), which is: typedef UCHAR_T MathEntityName[20]; The longest entity name, precisely "DoubleLeftRightArrow", is 20 *plus 1* (the ending null) characters long, so this table entry gets corrupted on initialization. A solution is to make it larger, i.e. 30 characters: typedef UCHAR_T MathEntityName[30]; Whith this change, the above mentioned entity is handled correctrly. Just my 2 cents. -- Alberto González Palomo Toledo, Spain matmota@linuxfreak.com agp@diskobolo.mat.ucm.esReceived on Thursday, 9 September 1999 19:15:21 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Thursday, 20 September 2007 14:24:25 GMT