aboutsummaryrefslogtreecommitdiff
path: root/build2
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-11-03 17:50:32 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-04 09:26:37 +0200
commit33e2f00fb710b2f63e9daa690c4eaad1e6eb3bad (patch)
tree28bd04d4ace1dca2433da6bdd6de8cd5dde9e2f4 /build2
parent57c7577fa91ffc024e5c696a91abe19f5547a787 (diff)
Print empty name as '' rather than {} in quoted mode
Diffstat (limited to 'build2')
-rw-r--r--build2/name12
-rw-r--r--build2/name.cxx7
2 files changed, 13 insertions, 6 deletions
diff --git a/build2/name b/build2/name
index 4e514c5..12aa9dc 100644
--- a/build2/name
+++ b/build2/name
@@ -113,12 +113,14 @@ namespace build2
//
// \$("
//
+ // Note that in the quoted mode empty unqualified name is printed as '',
+ // not {}.
+ //
ostream&
- to_stream (ostream&, const name&, bool quote, char pair);
+ to_stream (ostream&, const name&, bool quote, char pair = '\0');
inline ostream&
- operator<< (ostream& os, const name& n) {
- return to_stream (os, n, false, '\0');}
+ operator<< (ostream& os, const name& n) {return to_stream (os, n, false);}
// Vector of names.
@@ -129,11 +131,11 @@ namespace build2
// The same semantics as to_stream(name).
//
ostream&
- to_stream (ostream&, const names_view&, bool quote, char pair);
+ to_stream (ostream&, const names_view&, bool quote, char pair = '\0');
inline ostream&
operator<< (ostream& os, const names_view& ns) {
- return to_stream (os, ns, false, '\0');}
+ return to_stream (os, ns, false);}
inline ostream&
operator<< (ostream& os, const names& ns) {return os << names_view (ns);}
diff --git a/build2/name.cxx b/build2/name.cxx
index de1ee51..5f6762d 100644
--- a/build2/name.cxx
+++ b/build2/name.cxx
@@ -62,6 +62,11 @@ namespace build2
os << d;
};
+ // If quoted then print empty name as '' rather than {}.
+ //
+ if (quote && n.empty () && n.proj == nullptr)
+ return os << "''";
+
if (n.proj != nullptr)
{
write_string (*n.proj);
@@ -70,7 +75,7 @@ namespace build2
// If the value is empty, then we want to print the directory
// inside {}, e.g., dir{bar/}, not bar/dir{}. We also want to
- // print {} for an empty name.
+ // print {} for an empty name (unless quoted).
//
bool d (!n.dir.empty ());
bool v (!n.value.empty ());