diff -C 2 -P src2/ctk_binary_ops.cpp src/ctk_binary_ops.cpp
*** src2/ctk_binary_ops.cpp	Thu Feb 15 12:52:36 2001
--- src/ctk_binary_ops.cpp	Thu Feb 15 12:49:13 2001
***************
*** 13,16 ****
--- 13,17 ----
  /******************************************************************************/
  
+ // Patch Applied: v1.1.0_1 - ctk_binary_ops.patch - Feb 15, 2001 -  Fixes bug in DividerBlock
  
  #include "ctk_local.hh"
***************
*** 115,119 ****
      
      for (CTKVector::iterator fp1=xv0->begin(), fp2=xv1->begin(); fp1<xv0->end(); ++fp1, ++fp2)
!       *fp1/=*fp1;
      
      delete xv1;
--- 116,121 ----
      
      for (CTKVector::iterator fp1=xv0->begin(), fp2=xv1->begin(); fp1<xv0->end(); ++fp1, ++fp2)
! //      *fp1/=*fp1;   //  BUG - fixed by patch
!       *fp1/=*fp2;    
      
      delete xv1;
diff -C 2 -P src2/patch_list src/patch_list
*** src2/patch_list	Thu Jan  1 01:00:00 1970
--- src/patch_list	Thu Feb 15 12:49:29 2001
***************
*** 0 ****
--- 1,8 ----
+ ## Patches Applied to  CTK VERSION 1.1.0  Feb 10, 2001
+ ##
+ ## This file maintains a list of patches applied to the pristine distribution.
+ ##
+ ##           !! DO NOT EDIT THIS FILE !!
+ ##
+ 
+ v1.1.0_1.patch  - ctk_binary_ops.cpp - Feb 15, 2001 - Fixes bug in DividerBlock
