From 9e4f98c61405595d83a4bd50c6b6761de4bc850c Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Fri, 28 Nov 2008 18:49:10 +0000
Subject: [PATCH] *** empty log message ***

---
 Mesh/Generator.cpp | 11 +++++------
 doc/VERSIONS.txt   |  7 ++++---
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/Mesh/Generator.cpp b/Mesh/Generator.cpp
index 96c51568f5..559779a732 100644
--- a/Mesh/Generator.cpp
+++ b/Mesh/Generator.cpp
@@ -408,16 +408,15 @@ static void Mesh2D(GModel *m)
     }
   }
   
-  // look if there a re model faces for which 
-  // full quad algo is set ON
+  // look if there are model faces for which the "full quad" algo is
+  // set ON
   bool fullQuad = false;
   for(GModel::fiter it = m->firstFace() ; it!=m->lastFace(); ++it)
-    if ( CTX.mesh.algo_recombine == 2 && (*it)->quadrangles.size())
+    if(CTX.mesh.algo_recombine == 2 && (*it)->quadrangles.size())
       fullQuad = true;
-  if (fullQuad)RefineMesh(m,false,true);
+  if(fullQuad) RefineMesh(m, false, true);
 
-
-  //  gmshCollapseSmallEdges (*m);
+  // gmshCollapseSmallEdges (*m);
 
   double t2 = Cpu();
   CTX.mesh_timer[1] = t2 - t1;
diff --git a/doc/VERSIONS.txt b/doc/VERSIONS.txt
index 7eeaa93d48..f77b334326 100644
--- a/doc/VERSIONS.txt
+++ b/doc/VERSIONS.txt
@@ -1,7 +1,8 @@
-$Id: VERSIONS.txt,v 1.19 2008-11-25 17:18:33 geuzaine Exp $
+$Id: VERSIONS.txt,v 1.20 2008-11-28 18:49:10 geuzaine Exp $
 
-2.2.7 (?): fixed clipping planes when more than 32 views are present
-(replaced General.Clip with {Geometry,Mesh,View}.Clip).
+2.2.7 (?): restored full-quad recombine algorithm; fixed clipping
+planes when more than 32 views are present (replaced General.Clip with
+{Geometry,Mesh,View}.Clip).
 
 2.2.6 (Nov 21, 2008): better transfinite smoothing and automatic
 corner selection; fixed high order meshing crashes on Windows and
-- 
GitLab