Skip to content

Commit 2f7edad

Browse files
committed
---
yaml --- r: 152249 b: refs/heads/try2 c: 46d1af2 h: refs/heads/master i: 152247: eba4346 v: v3
1 parent 0ca1332 commit 2f7edad

File tree

9 files changed

+1196
-1188
lines changed

9 files changed

+1196
-1188
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 5343eb7e0cf576d690b6cfceb9c5ca6a4bfd8652
8+
refs/heads/try2: 46d1af28b5ce4f626be1eb33cb9751cb9cbb1fe9
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/librustdoc/html/highlight.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pub fn highlight(src: &str, class: Option<&str>) -> String {
3434

3535
let mut out = io::MemWriter::new();
3636
doit(&sess,
37-
lexer::new_string_reader(&sess.span_diagnostic, fm),
37+
lexer::StringReader::new(&sess.span_diagnostic, fm),
3838
class,
3939
&mut out).unwrap();
4040
str::from_utf8_lossy(out.unwrap().as_slice()).to_string()

branches/try2/src/libsyntax/attr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use ast::{AttrId, Attribute, Attribute_, MetaItem, MetaWord, MetaNameValue, Meta
1515
use codemap::{Span, Spanned, spanned, dummy_spanned};
1616
use codemap::BytePos;
1717
use diagnostic::SpanHandler;
18-
use parse::comments::{doc_comment_style, strip_doc_comment_decoration};
18+
use parse::lexer::comments::{doc_comment_style, strip_doc_comment_decoration};
1919
use parse::token::InternedString;
2020
use parse::token;
2121
use crateid::CrateId;

0 commit comments

Comments
 (0)