Skip to content

Commit 9856a86

Browse files
committed
---
yaml --- r: 152683 b: refs/heads/try2 c: 80d8214 h: refs/heads/master i: 152681: 78e1ce3 152679: fa2e57b v: v3
1 parent 549a429 commit 9856a86

File tree

183 files changed

+2388
-4041
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+2388
-4041
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: bb06790c37e839c98427b966cd079da712268415
8+
refs/heads/try2: 80d8214f95d3ad3f947a905b49c3de084e684e45
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/compiler-rt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 62a4ca6055ad6fda8faf767b93b5736dcdfb7013
1+
Subproject commit 7b97b8468f0614072cf3299fa8c51e85f609316f

branches/try2/src/compiletest/runtest.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1269,7 +1269,7 @@ fn make_out_name(config: &Config, testfile: &Path, extension: &str) -> Path {
12691269

12701270
fn aux_output_dir_name(config: &Config, testfile: &Path) -> Path {
12711271
let mut f = output_base_name(config, testfile);
1272-
match f.filename().map(|s| Vec::from_slice(s).append(b".libaux")) {
1272+
match f.filename().map(|s| Vec::from_slice(s).append(bytes!(".libaux"))) {
12731273
Some(v) => f.set_filename(v),
12741274
None => ()
12751275
}
@@ -1490,7 +1490,7 @@ fn append_suffix_to_stem(p: &Path, suffix: &str) -> Path {
14901490
(*p).clone()
14911491
} else {
14921492
let stem = p.filestem().unwrap();
1493-
p.with_filename(Vec::from_slice(stem).append(b"-").append(suffix.as_bytes()))
1493+
p.with_filename(Vec::from_slice(stem).append(bytes!("-")).append(suffix.as_bytes()))
14941494
}
14951495
}
14961496

branches/try2/src/doc/complement-cheatsheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ character.
7676
~~~
7777
use std::str;
7878
79-
let x = b"Hello \xF0\x90\x80World!";
79+
let x = bytes!(72u8,"ello ",0xF0,0x90,0x80,"World!");
8080
let y = str::from_utf8_lossy(x);
8181
~~~
8282

branches/try2/src/doc/rust.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -378,19 +378,6 @@ the characters `U+0022` (double-quote) (except when followed by at least as
378378
many `U+0023` (`#`) characters as were used to start the raw string literal) or
379379
`U+005C` (`\`) do not have any special meaning.
380380

381-
Examples for byte string literals:
382-
383-
~~~~
384-
b"foo"; br"foo"; // foo
385-
b"\"foo\""; br#""foo""#; // "foo"
386-
387-
b"foo #\"# bar";
388-
br##"foo #"# bar"##; // foo #"# bar
389-
390-
b"\x52"; b"R"; br"R"; // R
391-
b"\\x52"; br"\x52"; // \x52
392-
~~~~
393-
394381
#### Number literals
395382

396383
~~~~ {.ebnf .gram}

branches/try2/src/etc/2014-06-rewrite-bytes-macros.py

Lines changed: 0 additions & 138 deletions
This file was deleted.

branches/try2/src/etc/emacs/run_rust_emacs_tests.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/bin/sh
21
# Copyright 2014 The Rust Project Developers. See the COPYRIGHT
32
# file at the top-level directory of this distribution and at
43
# http://rust-lang.org/COPYRIGHT.

0 commit comments

Comments
 (0)