diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-08-20T14·01+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-08-20T14·50+0200 |
commit | 373fad75e19a2f24db512621b8cedb627d03d49d (patch) | |
tree | 640fd0cac2ccc58f2db5a3f39eba6d0d67badb22 /src/libexpr/nixexpr.cc | |
parent | 392430b2c4ceb2e476abe2b3acc928581b2a1445 (diff) |
Add some color
Diffstat (limited to 'src/libexpr/nixexpr.cc')
-rw-r--r-- | src/libexpr/nixexpr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/nixexpr.cc b/src/libexpr/nixexpr.cc index b916a26d2169..bb72c007cbcd 100644 --- a/src/libexpr/nixexpr.cc +++ b/src/libexpr/nixexpr.cc @@ -143,7 +143,7 @@ std::ostream & operator << (std::ostream & str, const Pos & pos) if (!pos) str << "undefined position"; else - str << (format("%1%:%2%:%3%") % pos.file % pos.line % pos.column).str(); + str << (format(ANSI_BOLD "%1%" ANSI_NORMAL ":%2%:%3%") % pos.file % pos.line % pos.column).str(); return str; } |