Skip to content

Commit 795a45f

Browse files
committed
---
yaml --- r: 102367 b: refs/heads/master c: a7da925 h: refs/heads/master i: 102365: 7bc1dd7 102363: 5dae950 102359: 1a16d45 102351: aa9251b 102335: e685cad v: v3
1 parent 1e41fd2 commit 795a45f

Some content is hidden

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

92 files changed

+1837
-1098
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 28d4f80836b3557a500e61f4b4fa7d8b47c6a0bf
2+
refs/heads/master: a7da925b020ee649adc99883264529f664eaf91a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 6e7f170fedd3c526a643c0b2d13863acd982be02
55
refs/heads/try: a97642026c18a624ff6ea01075dd9550f8ed07ff

trunk/src/compiletest/runtest.rs

Lines changed: 80 additions & 80 deletions
Large diffs are not rendered by default.

trunk/src/doc/rust.css

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ h5 a:link, h5 a:visited {color: black;}
111111
/* Code
112112
========================================================================== */
113113
pre, code {
114-
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
114+
font-family: Menlo, Monaco, Consolas, "DejaVu Sans Mono", monospace;
115115
border-radius: 4px;
116116
}
117117
pre {
118-
background-color: #F5F5F5;
118+
background-color: #FDFDFD;
119119
border: 1px solid #CCC;
120120
border-radius: 0.5em;
121121
white-space: pre-wrap;
@@ -142,24 +142,24 @@ pre code {
142142
}
143143

144144
/* Code highlighting */
145-
.cm-s-default span.cm-keyword {color: #803C8D;}
145+
.cm-s-default span.cm-keyword {color: #8959A8;}
146146
.cm-s-default span.cm-atom {color: #219;}
147-
.cm-s-default span.cm-number {color: #2AA198;}
148-
.cm-s-default span.cm-def {color: #256EB8;}
149-
.cm-s-default span.cm-variable {color: black;}
150-
.cm-s-default span.cm-variable-2 {color: #817E61;}
151-
.cm-s-default span.cm-variable-3 {color: #085;}
147+
.cm-s-default span.cm-number {color: #3E999F;}
148+
.cm-s-default span.cm-def {color: #4271AE;}
149+
/*.cm-s-default span.cm-variable {color: #C82829;}*/
150+
.cm-s-default span.cm-variable-2 {color: #6F906C;}
151+
.cm-s-default span.cm-variable-3 {color: #B76514;}
152152
.cm-s-default span.cm-property {color: black;}
153153
.cm-s-default span.cm-operator {color: black;}
154-
.cm-s-default span.cm-comment {color: #A82323;}
155-
.cm-s-default span.cm-string {color: #866544;}
156-
.cm-s-default span.cm-string-2 {color: #F50;}
154+
.cm-s-default span.cm-comment {color: #8E908C;}
155+
.cm-s-default span.cm-string {color: #718C00;}
156+
.cm-s-default span.cm-string-2 {color: #866544;}
157157
.cm-s-default span.cm-meta {color: #555;}
158158
/*.cm-s-default span.cm-error {color: #F00;}*/
159159
.cm-s-default span.cm-qualifier {color: #555;}
160160
.cm-s-default span.cm-builtin {color: #30A;}
161161
.cm-s-default span.cm-bracket {color: #CC7;}
162-
.cm-s-default span.cm-tag {color: #170;}
162+
.cm-s-default span.cm-tag {color: #C82829;}
163163
.cm-s-default span.cm-attribute {color: #00C;}
164164

165165
/* The rest

trunk/src/doc/rust.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2485,8 +2485,11 @@ before the expression they apply to.
24852485
`*`
24862486
: Dereference. When applied to a [pointer](#pointer-types) it denotes the pointed-to location.
24872487
For pointers to mutable locations, the resulting [lvalue](#lvalues-rvalues-and-temporaries) can be assigned to.
2488-
For [enums](#enumerated-types) that have only a single variant, containing a single parameter,
2489-
the dereference operator accesses this parameter.
2488+
On non-pointer types, it calls calls the `deref` method of the `std::ops::Deref` trait, or the
2489+
`deref_mut` method of the `std::ops::DerefMut` trait (if implemented by the type and required
2490+
for an outer expression that will or could mutate the dereference), and produces the
2491+
result of dereferencing the `&` or `&mut` borrowed pointer returned from the overload method.
2492+
24902493
`!`
24912494
: Logical negation. On the boolean type, this flips between `true` and
24922495
`false`. On integer types, this inverts the individual bits in the

trunk/src/doc/rustdoc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ is how the above advertisement works. An example from the `libstd`
6363
documentation:
6464

6565
~~~
66-
#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
66+
#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
6767
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
6868
html_root_url = "http://static.rust-lang.org/doc/master")];
6969
~~~

trunk/src/libextra/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Rust extras are part of the standard Rust distribution.
2525
#[license = "MIT/ASL2"];
2626
#[crate_type = "rlib"];
2727
#[crate_type = "dylib"];
28-
#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
28+
#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2929
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
3030
html_root_url = "http://static.rust-lang.org/doc/master")];
3131

trunk/src/libgreen/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@
167167
#[license = "MIT/ASL2"];
168168
#[crate_type = "rlib"];
169169
#[crate_type = "dylib"];
170-
#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
170+
#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
171171
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
172172
html_root_url = "http://static.rust-lang.org/doc/master")];
173173

trunk/src/libgreen/simple.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
//! A small module implementing a simple "runtime" used for bootstrapping a rust
1212
//! scheduler pool and then interacting with it.
1313
14+
use std::any::Any;
1415
use std::cast;
1516
use std::rt::Runtime;
1617
use std::rt::local::Local;

trunk/src/libgreen/task.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
//! contains the rust task itself in order to juggle around ownership of the
1919
//! values.
2020
21+
use std::any::Any;
2122
use std::cast;
2223
use std::rt::env;
2324
use std::rt::Runtime;

trunk/src/libnative/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
#[license = "MIT/ASL2"];
4646
#[crate_type = "rlib"];
4747
#[crate_type = "dylib"];
48-
#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
48+
#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
4949
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
5050
html_root_url = "http://static.rust-lang.org/doc/master")];
5151
#[deny(unused_result, unused_must_use)];

trunk/src/libnative/task.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
//! by rust tasks. This implements the necessary API traits laid out by std::rt
1515
//! in order to spawn new tasks and deschedule the current task.
1616
17+
use std::any::Any;
1718
use std::cast;
1819
use std::rt::env;
1920
use std::rt::local::Local;

0 commit comments

Comments
 (0)