]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/includable-lexer.cc
Grand fixcc.py run on all .hh .cc files.
[lilypond.git] / lily / includable-lexer.cc
index 4c6766c7fd0369752b33bc9a8f7b1bc463ced7c4..6fb6e2054cb70a3cef64205fd5197c245531b68f 100644 (file)
@@ -37,14 +37,14 @@ using namespace std;
 #endif
 
 #ifndef YY_START
-#define YY_START                               \
+#define YY_START                                \
   ((yy_start - 1) / 2)
 #define YYSTATE YY_START
 #endif
 
 /* Flex >= 2.5.29 has include stack; but we don't use that yet.  */
 #if !HAVE_FLEXLEXER_YY_CURRENT_BUFFER
-#define yy_current_buffer                                              \
+#define yy_current_buffer                                               \
   (yy_buffer_stack != 0 ? yy_buffer_stack[yy_buffer_stack_top] : 0)
 #endif
 
@@ -71,7 +71,7 @@ Includable_lexer::new_input (string name, Sources *sources)
       string msg = _f ("cannot find file: `%s'", name);
       msg += "\n";
       msg += _f ("(search path: `%s')",
-                (current_dir.length () ? (current_dir + PATHSEP) : "") + sources->path_->to_string ().c_str ());
+                 (current_dir.length () ? (current_dir + PATHSEP) : "") + sources->path_->to_string ().c_str ());
       LexerError (msg.c_str ());
       return;
     }
@@ -85,7 +85,7 @@ Includable_lexer::new_input (string name, Sources *sources)
     {
       string spaces = "";
       for (size_t i = 0; i < state_stack_.size (); i++)
-       spaces += " ";
+        spaces += " ";
       progress_indication (string ("\n") + spaces + string ("[") + file->name_string ());
     }
 
@@ -113,7 +113,7 @@ Includable_lexer::new_input (string name, string data, Sources *sources)
     {
       string spaces = "";
       for (size_t i = 0; i < state_stack_.size (); i++)
-       spaces += " ";
+        spaces += " ";
       progress_indication (string ("\n") + spaces + string ("[") + name);
     }
   include_stack_.push_back (file);