Skip to content

Commit 1d3de4d

Browse files
committed
---
yaml --- r: 121598 b: refs/heads/try c: 80d8214 h: refs/heads/master v: v3
1 parent e350a2c commit 1d3de4d

File tree

196 files changed

+3189
-5082
lines changed

Some content is hidden

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

196 files changed

+3189
-5082
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 8fe47bc3bb34d7a1ce7bbd2c6fc5ea7a6dbf57a4
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: bab614f5fa725d248afc5f0530c835f37998ce8f
5-
refs/heads/try: 1813e5aa1a03b0596b8de7abd1af31edf5d6098f
5+
refs/heads/try: 80d8214f95d3ad3f947a905b49c3de084e684e45
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/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/try/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/try/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/try/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/try/src/etc/2014-06-rewrite-bytes-macros.py

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

branches/try/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)