--- a/src/format.cc Sat Jan 18 02:11:45 2014 +0200 +++ b/src/format.cc Sun Jan 19 20:16:00 2014 +0200 @@ -33,6 +33,8 @@ #include "format.h" #include "lexer.h" +// ============================================================================= +// static void draw_pos (const string& fmt, int pos) { string rep (fmt); @@ -111,12 +113,16 @@ return fmt; } +// ============================================================================= +// void print_args (FILE* fp, const list<format_arg>& args) { string out = format_args (args); fprintf (fp, "%s", out.chars()); } +// ============================================================================= +// void do_error (string msg) { lexer* lx = lexer::get_main_lexer();