Use > quoting characters when excerpting from the user's data file.

This commit is contained in:
John Wiegley 2009-02-02 00:28:12 -04:00
parent 42bed9c001
commit b18214372e

View file

@ -323,7 +323,7 @@ string item_context(const item_t& item)
first = false; first = false;
else else
out << '\n'; out << '\n';
out << " " << p; out << "> " << p;
} }
return out.str(); return out.str();
} }