]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/token_functions.hpp
Make the default format translatable, and load the cite formats in
[lyx.git] / boost / boost / token_functions.hpp
index ecf44cb9c569a80f567d9528a00b8dd6641ee2d9..ef7ba7306676c0e25ac0d77773e04cc761feaac2 100644 (file)
@@ -9,7 +9,7 @@
 // See http://www.boost.org/libs/tokenizer/ for documentation.
 
 // Revision History:
-// 01 Oct 2004   Joaquín M López Muñoz
+// 01 Oct 2004   Joaquin M Lopez Munoz
 //      Workaround for a problem with string::assign in msvc-stlport
 // 06 Apr 2004   John Bandela
 //      Fixed a bug involving using char_delimiter with a true input iterator
@@ -336,10 +336,12 @@ namespace boost{
         return false;
 
       if (current_offset_ == offsets_.size())
+      {
         if (wrap_offsets_)
           current_offset_=0;
         else
           return false;
+      }
       
       int c = offsets_[current_offset_];
       int i = 0;
@@ -449,12 +451,16 @@ namespace boost{
         
         // Handle empty token at the end
         if (next == end)
-          if (m_output_done == false) {
+        {
+          if (m_output_done == false) 
+          {
             m_output_done = true;
             assigner::assign(start,next,tok);
             return true;
-          } else
+          } 
+          else
             return false;
+        }
         
         if (is_kept(*next)) {
           if (m_output_done == false)