[BACK]Return to cordbscs.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / gc / cord

Diff for /OpenXM_contrib2/asir2000/gc/cord/cordbscs.c between version 1.3 and 1.4

version 1.3, 2002/07/24 08:00:14 version 1.4, 2003/06/24 05:11:37
Line 219  CORD CORD_cat_char_star(CORD x, const char * y, size_t
Line 219  CORD CORD_cat_char_star(CORD x, const char * y, size_t
         result->len = result_len;          result->len = result_len;
         result->left = x;          result->left = x;
         result->right = y;          result->right = y;
         if (depth > MAX_DEPTH) {          if (depth >= MAX_DEPTH) {
             return(CORD_balance((CORD)result));              return(CORD_balance((CORD)result));
         } else {          } else {
             return((CORD) result);              return((CORD) result);
Line 260  CORD CORD_cat(CORD x, CORD y)
Line 260  CORD CORD_cat(CORD x, CORD y)
         result->len = result_len;          result->len = result_len;
         result->left = x;          result->left = x;
         result->right = y;          result->right = y;
         return((CORD) result);          if (depth >= MAX_DEPTH) {
               return(CORD_balance((CORD)result));
           } else {
               return((CORD) result);
           }
     }      }
 }  }
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>