Diff for /Amaya/amaya/MathMLbuilder.c between versions 1.17 and 1.18

version 1.17, 1999/04/26 07:03:19 version 1.18, 1999/06/02 12:43:21
Line 631  Document doc; Line 631  Document doc;
   returns TRUE if element el needs a sibling placeholder.    returns TRUE if element el needs a sibling placeholder.
   ----------------------------------------------------------------------*/    ----------------------------------------------------------------------*/
 #ifdef __STDC__  #ifdef __STDC__
 boolean      ElementNeedsPlaceholder (Element el)  ThotBool     ElementNeedsPlaceholder (Element el)
 #else  #else
 boolean      ElementNeedsPlaceholder (el)  ThotBool     ElementNeedsPlaceholder (el)
 Element el;  Element el;
     
 #endif  #endif
 {  {
   ElementType   elType;    ElementType   elType;
   Element       child, parent;    Element       child, parent;
   boolean       ret;    ThotBool      ret;
     
   ret = FALSE;    ret = FALSE;
   elType = TtaGetElementType (el);    elType = TtaGetElementType (el);
Line 699  static void CreatePlaceholders (el, doc) Line 699  static void CreatePlaceholders (el, doc)
    Attribute    attr;     Attribute    attr;
    ElementType  elType;     ElementType  elType;
    AttributeType        attrType;     AttributeType        attrType;
    boolean      create;     ThotBool     create;
   
    elType.ElSSchema = GetMathMLSSchema (doc);     elType.ElSSchema = GetMathMLSSchema (doc);
    prev = NULL;     prev = NULL;
Line 1728  Document  doc; Line 1728  Document  doc;
    according to attribute separators of the MFENCED element.     according to attribute separators of the MFENCED element.
   ----------------------------------------------------------------------*/    ----------------------------------------------------------------------*/
 #ifdef __STDC__  #ifdef __STDC__
 void      CreateFencedSeparators (Element fencedExpression, Document doc, boolean record)  void      CreateFencedSeparators (Element fencedExpression, Document doc, ThotBool record)
 #else  #else
 void      CreateFencedSeparators (fencedExpression, doc, record)  void      CreateFencedSeparators (fencedExpression, doc, record)
 Element         fencedExpression;  Element         fencedExpression;
 Document        doc;  Document        doc;
 boolean         record;  ThotBool        record;
   
 #endif  #endif
 {  {

Removed from v.1.17  
changed lines
  Added in v.1.18


Webmaster