diff --git a/Geo/OCCEdge.cpp b/Geo/OCCEdge.cpp
index 85370e8c33f19a5b76ceff0073961b300f2d40de..605fc54fe6cb3c778bec3ca8dddf1d46363f0977 100644
--- a/Geo/OCCEdge.cpp
+++ b/Geo/OCCEdge.cpp
@@ -1,4 +1,4 @@
-// $Id: OCCEdge.cpp,v 1.19 2007-01-31 12:27:18 remacle Exp $
+// $Id: OCCEdge.cpp,v 1.20 2007-02-03 00:02:16 geuzaine Exp $
 //
 // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
 //
@@ -45,7 +45,7 @@ OCCEdge::OCCEdge(GModel *model, TopoDS_Edge edge, int num, GVertex *v1, GVertex
 
 Range<double> OCCEdge::parBounds(int i) const
 { 
-  return(Range<double>(s0,s1));
+  return Range<double>(s0, s1);
 }
 
 void OCCEdge::setTrimmed (OCCFace *f)
@@ -54,7 +54,7 @@ void OCCEdge::setTrimmed (OCCFace *f)
     trimmed = f;
     const TopoDS_Face *s = (TopoDS_Face*) trimmed->getNativePtr();
     curve2d = BRep_Tool::CurveOnSurface(c, *s, s0, s1);
-    if (curve2d.IsNull())  trimmed = 0;
+    if(curve2d.IsNull()) trimmed = 0;
   }
 }
 
@@ -64,14 +64,12 @@ SPoint2 OCCEdge::reparamOnFace(GFace *face, double epar,int dir) const
   double t0,t1;
   Handle(Geom2d_Curve) c2d;
 
-  if(dir == 1)
-    {
-      c2d = BRep_Tool::CurveOnSurface(c, *s, t0, t1);
-    }
-  else
-    {
-      c2d = BRep_Tool::CurveOnSurface(c_rev, *s, t0, t1);
-    }
+  if(dir == 1){
+    c2d = BRep_Tool::CurveOnSurface(c, *s, t0, t1);
+  }
+  else{
+    c2d = BRep_Tool::CurveOnSurface(c_rev, *s, t0, t1);
+  }
   
   if(c2d.IsNull()){
     Msg(FATAL,"Reparam on face failed : curve %d is not on surface %d",tag(),face->tag());
@@ -89,24 +87,27 @@ SPoint2 OCCEdge::reparamOnFace(GFace *face, double epar,int dir) const
     const double dy = p1.y()-p2.y();
     const double dz = p1.z()-p2.z();
     if(sqrt(dx*dx+dy*dy+dz*dz) > 1.e-7 * CTX.lc){
-      //      return reparamOnFace(face, epar,-1);      
-      Msg(WARNING,"Reparam on face partially failed for curve %d surface %d at point %g",tag(),face->tag(),epar);
-      Msg(WARNING,"On the face %d local (%g %g) global (%g %g %g)",face->tag(),u,v,p2.x(),p2.y(),p2.z());
-      Msg(WARNING,"On the edge %d local (%g) global (%g %g %g)",tag(),epar,p1.x(),p1.y(),p1.z());
-      GPoint ppp = face->closestPoint(SPoint3(p1.x(),p1.y(),p1.z()));
-      return SPoint2(ppp.u(),ppp.v());
+      // return reparamOnFace(face, epar,-1);      
+      Msg(WARNING, "Reparam on face partially failed for curve %d surface %d at point %g",
+	  tag(), face->tag(), epar);
+      Msg(WARNING, "On the face %d local (%g %g) global (%g %g %g)",
+	  face->tag(), u, v, p2.x(), p2.y(), p2.z());
+      Msg(WARNING, "On the edge %d local (%g) global (%g %g %g)",
+	  tag(), epar, p1.x(), p1.y(), p1.z());
+      GPoint ppp = face->closestPoint(SPoint3(p1.x(), p1.y(), p1.z()));
+      return SPoint2(ppp.u(), ppp.v());
     }
   }
-  return SPoint2(u,v);
+  return SPoint2(u, v);
 }
 
 // True if the edge is a seam for the given face
 int OCCEdge::isSeam(GFace *face) const
 {
   const TopoDS_Face *s = (TopoDS_Face*) face->getNativePtr();
-  BRepAdaptor_Surface surface( *s );
+  BRepAdaptor_Surface surface(*s);
   if(surface.IsUPeriodic() || surface.IsVPeriodic()){
-    return BRep_Tool::IsClosed( c, *s );
+    return BRep_Tool::IsClosed(c, *s);
   }
   return 0;
 }
@@ -115,16 +116,16 @@ GPoint OCCEdge::point(double par) const
 {
   if(!curve.IsNull()){
     gp_Pnt pnt = curve->Value (par);
-    return GPoint(pnt.X(),pnt.Y(),pnt.Z());
+    return GPoint(pnt.X(), pnt.Y(), pnt.Z());
   }
   else if(trimmed){
-    double u,v;
-    curve2d->Value(par).Coord(u,v);
-    return trimmed->point(u,v);
+    double u, v;
+    curve2d->Value(par).Coord(u, v);
+    return trimmed->point(u, v);
   }
   else{
-    Msg(WARNING,"OCC Curve %d is neither a 3D curve not a trimmed curve",tag());
-    return GPoint (0,0,0);
+    Msg(WARNING, "OCC Curve %d is neither a 3D curve not a trimmed curve", tag());
+    return GPoint(0, 0, 0);
   }
 }
 
diff --git a/Geo/gmshEdge.cpp b/Geo/gmshEdge.cpp
index e5ff67643a48c78502b1e9da3e1882ebd6be2a32..a495b7566efa2941f2516af59470eb2ac059748f 100644
--- a/Geo/gmshEdge.cpp
+++ b/Geo/gmshEdge.cpp
@@ -1,4 +1,4 @@
-// $Id: gmshEdge.cpp,v 1.27 2007-02-02 17:16:46 remacle Exp $
+// $Id: gmshEdge.cpp,v 1.28 2007-02-03 00:02:16 geuzaine Exp $
 //
 // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
 //
@@ -145,53 +145,53 @@ SPoint2 gmshEdge::reparamOnFace(GFace *face, double epar,int dir) const
 {
   Surface *s = (Surface*) face->getNativePtr();
 
-  if (s->geometry)
-    {
-      switch (c->Typ) {
-      case MSH_SEGM_LINE:
-	{
-	  Vertex *v[3];
-	  List_Read(c->Control_Points, 0, &v[1]);
-	  List_Read(c->Control_Points, 1, &v[2]);
-	  SPoint2 p =  v[1] -> pntOnGeometry +  (v[2] -> pntOnGeometry - v[1] -> pntOnGeometry) * epar;
-	  return p;
+  if(s->geometry){
+    switch (c->Typ) {
+    case MSH_SEGM_LINE:
+      {
+	Vertex *v[3];
+	List_Read(c->Control_Points, 0, &v[1]);
+	List_Read(c->Control_Points, 1, &v[2]);
+	SPoint2 p = v[1]->pntOnGeometry + 
+	  (v[2]->pntOnGeometry - v[1]->pntOnGeometry) * epar;
+	return p;
+      }
+      break;
+    case MSH_SEGM_SPLN :
+      {
+	Vertex *v[4];
+	Vertex temp1, temp2;
+	int N = List_Nbr(c->Control_Points);
+	int i = (int)((double)(N - 1) * epar);
+	if(i < 0)
+	  i = 0;
+	if(i >= N - 1)
+	  i = N - 2;
+	double t1 = (double)(i) / (double)(N - 1);
+	double t2 = (double)(i + 1) / (double)(N - 1);
+	double t = (epar - t1) / (t2 - t1);
+	List_Read(c->Control_Points, i, &v[1]);
+	List_Read(c->Control_Points, i + 1, &v[2]);
+	if(!i) {
+	  v[0] = &temp1;
+	  v[0]->pntOnGeometry = v[1]->pntOnGeometry * 2. - v[2]->pntOnGeometry;
+	}
+	else {
+	  List_Read(c->Control_Points, i - 1, &v[0]);
+	}
+	if(i == N - 2) {
+	  v[3] = &temp2;
+	  v[3]->pntOnGeometry = v[2]->pntOnGeometry * 2. - v[1]->pntOnGeometry;
 	}
-	break;
-      case  MSH_SEGM_SPLN :
-	  {
-	    Vertex *v[4];
-	    Vertex temp1, temp2;
-	    int N = List_Nbr(c->Control_Points);
-	    int i = (int)((double)(N - 1) * epar);
-	    if(i < 0)
-	      i = 0;
-	    if(i >= N - 1)
-	      i = N - 2;
-	    double t1 = (double)(i) / (double)(N - 1);
-	    double t2 = (double)(i + 1) / (double)(N - 1);
-	    double t = (epar - t1) / (t2 - t1);
-	    List_Read(c->Control_Points, i, &v[1]);
-	    List_Read(c->Control_Points, i + 1, &v[2]);
-	    if(!i) {
-	      v[0] = &temp1;
-	      v[0]->pntOnGeometry = v[1]->pntOnGeometry * 2. - v[2]->pntOnGeometry;
-	    }
-	    else {
-	      List_Read(c->Control_Points, i - 1, &v[0]);
-	    }
-	    if(i == N - 2) {
-	      v[3] = &temp2;
-	      v[3]->pntOnGeometry = v[2]->pntOnGeometry * 2. - v[1]->pntOnGeometry;
-	    }
-	    else {
-	      List_Read(c->Control_Points, i + 2, &v[3]);
-	    }
-	    return  InterpolateCubicSpline(v, t, c->mat, 0, t1, t2,c->geometry);
-	  }
-      default :
-	throw;
+	else {
+	  List_Read(c->Control_Points, i + 2, &v[3]);
+	}
+	return InterpolateCubicSpline(v, t, c->mat, 0, t1, t2,c->geometry);
       }
+    default :
+      throw;
     }
+  }
   
   if (s->Typ ==  MSH_SURF_REGL){
     Curve *C[4];