Diff for /Amaya/amaya/fetchXMLname.c between versions 1.33 and 1.34

version 1.33, 2000/11/22 15:52:59 version 1.34, 2000/12/27 14:36:29
Line 289  Document          doc; Line 289  Document          doc;
    Thot type is an inline character or not     Thot type is an inline character or not
   ----------------------------------------------------------------------*/    ----------------------------------------------------------------------*/
 #ifdef __STDC__  #ifdef __STDC__
 ThotBool          IsXMLElementInline (Element el)  ThotBool         IsXMLElementInline (ElementType elType)
 #else  #else
 ThotBool          IsXMLElementInline (el)  ThotBool         IsXMLElementInline (elType)
 Element           el;  ElementType      el;
 #endif  #endif
 {  {
   ElementType         elType;    int            i;
   int                 i;    ThotBool       ret = FALSE;
   ThotBool            ret = FALSE;    STRING         name;
   STRING              name;    ElemMapping   *ptr;
   ElemMapping        *ptr;  
   
   elType = TtaGetElementType (el);  
   if (elType.ElTypeNum > 0)    if (elType.ElTypeNum > 0)
     {      {
       i = 0;        i = 0;

Removed from v.1.33  
changed lines
  Added in v.1.34


Webmaster