auto merge of #19258 : nick29581/rust/dxr-minor, r=brson

r?
This commit is contained in:
bors 2014-11-24 16:07:00 +00:00
commit 54c628cb84
2 changed files with 1 additions and 2 deletions

View File

@ -171,7 +171,7 @@ impl<'a> FmtStrs<'a> {
let pairs = fields.iter().zip(values);
let mut strs = pairs.map(|(f, v)| format!(",{},\"{}\"", f, escape(
if *f == "qualname" {
if *f == "qualname" && v.len() > 0 {
let mut n = self.krate.clone();
n.push_str("::");
n.push_str(v);

View File

@ -293,7 +293,6 @@ impl<'a> SpanUtils<'a> {
if ts.tok == token::Eof {
return None
} else {
println!("found keyword: {} at {}", ts, ts.sp);
return self.make_sub_span(span, Some(ts.sp));
}
}