Skip to content

Commit b0c498a

Browse files
pcwaltonhuonw
authored andcommitted
---
yaml --- r: 107855 b: refs/heads/dist-snap c: cbf9f5f h: refs/heads/master i: 107853: 3c63726 107851: 1a02ce2 107847: 252b729 107839: 51ba791 v: v3
1 parent 786c54d commit b0c498a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: f64fdf524a434f0e5cd0bc91d09c144723f3c90d
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: f9af11d6cc0266a5690897b4645d8cab2ed1115b
9+
refs/heads/dist-snap: cbf9f5f5dfd5e3ec36899adf89c55a20380da63e
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/libsyntax/ext/base.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,13 +439,15 @@ pub fn get_single_str_from_tts(cx: &ExtCtxt,
439439
sp: Span,
440440
tts: &[ast::TokenTree],
441441
name: &str)
442-
-> Option<@str> {
442+
-> Option<~str> {
443443
if tts.len() != 1 {
444444
cx.span_err(sp, format!("{} takes 1 argument.", name));
445445
} else {
446446
match tts[0] {
447447
ast::TTTok(_, token::LIT_STR(ident))
448-
| ast::TTTok(_, token::LIT_STR_RAW(ident, _)) => return Some(cx.str_of(ident)),
448+
| ast::TTTok(_, token::LIT_STR_RAW(ident, _)) => {
449+
return Some(cx.str_of(ident).to_str())
450+
}
449451
_ => cx.span_err(sp, format!("{} requires a string.", name)),
450452
}
451453
}

0 commit comments

Comments
 (0)