Skip to content
Closed
Changes from 2 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
d339468
improve unused doc comment diagnostic reporting
euclio Jan 23, 2019
b5fadf0
expand unused doc comment diagnostic
euclio Jan 24, 2019
890ef48
Fix an indexing error when using `x.py help`
varkor Feb 23, 2019
906ec8a
move collapse and unindent docs passes earlier
euclio Feb 20, 2019
1536852
merge early and late passes into single struct
euclio Feb 23, 2019
8300f51
Deny `async fn` in 2015 edition
cofibrant Feb 23, 2019
b7d4f96
rust-lldb: fix crash when printing empty string
euclio Feb 22, 2019
f1b88ab
Fix copy-pasted typo for read_string return value
shepmaster Feb 24, 2019
6c44bbb
Update dlmalloc to 0.1.3
Feb 26, 2019
eddd07c
Make `visit_clobber` panic-safe.
nnethercote Feb 22, 2019
abd88a9
Disable running several Stdio doctests
ipetkov Feb 26, 2019
5b97516
update scoped_tls to 1.0
Feb 26, 2019
992694a
reduce repetitions of (n << amt) >> amt
kenta7777 Feb 26, 2019
b23fd43
Make `Unique::as_ptr`, `NonNull::dangling` and `NonNull::cast` const
TimDiekmann Feb 26, 2019
56fb287
update Cargo.lock
hellow554 Feb 26, 2019
2d62619
Add `rustc_const_unstable` attribute
TimDiekmann Feb 26, 2019
4839d8c
Add tests
TimDiekmann Feb 26, 2019
6375efc
Update string_cache_codegen to 0.4.2
taiki-e Feb 26, 2019
278cb91
Satisfy tidy
TimDiekmann Feb 26, 2019
baea3c7
Use `cfg_attr` to prevent duplication
TimDiekmann Feb 26, 2019
c5f3830
Use const eval instead of const fn
TimDiekmann Feb 26, 2019
998896c
Clarify `rotate_{left,right}` docs
tbu- Feb 26, 2019
9b4055b
Normalize the type Self resolves to in an impl
Feb 26, 2019
c1f3d15
Changing error message to reflect changes with the 2018 edition
asettouf Feb 2, 2019
5d8fd8b
Mention `unwind(aborts)` in diagnostics for `#[unwind]`
petrochenkov Feb 26, 2019
ad6a282
Rollup merge of #57882 - euclio:unused-doc-attributes, r=estebank
Centril Feb 27, 2019
1c93801
Rollup merge of #58075 - asettouf:master, r=varkor
Centril Feb 27, 2019
bcaf49b
Rollup merge of #58627 - euclio:rustdoc-pass-order, r=QuietMisdreavus
Centril Feb 27, 2019
b5d757d
Rollup merge of #58629 - euclio:debug-empty-str, r=alexcrichton
Centril Feb 27, 2019
66747ad
Rollup merge of #58630 - nnethercote:fix-fold_clobber, r=petrochenkov
Centril Feb 27, 2019
c734e24
Rollup merge of #58678 - doctorn:refuse-async-fn-2015-edition, r=varkor
Centril Feb 27, 2019
a5074b1
Rollup merge of #58680 - varkor:xpy-help-index-error, r=alexcrichton
Centril Feb 27, 2019
8940158
Rollup merge of #58703 - shepmaster:read_line_return, r=centril
Centril Feb 27, 2019
7ce570d
Rollup merge of #58744 - jethrogb:jb/dlmalloc-0.1.3, r=alexcrichton
Centril Feb 27, 2019
69120f5
Rollup merge of #58746 - ipetkov:std-process-docs, r=cramertj
Centril Feb 27, 2019
cc317ef
Rollup merge of #58748 - hellow554:scoped_tls, r=estebank
Centril Feb 27, 2019
17f2f1e
Rollup merge of #58749 - kenta7777:reduce-repetition, r=oli-obk
Centril Feb 27, 2019
af6b494
Rollup merge of #58750 - TimDiekmann:master, r=oli-obk
Centril Feb 27, 2019
9f0f8a8
Rollup merge of #58752 - taiki-e:update-string_cache_codegen, r=alexc…
Centril Feb 27, 2019
e8123c6
Rollup merge of #58755 - tbu-:pr_doc_clarifyrotate, r=Centril
Centril Feb 27, 2019
c4e077e
Rollup merge of #58757 - aoikonomopoulos:issue-58212, r=oli-obk
Centril Feb 27, 2019
333c7dd
Rollup merge of #58762 - petrochenkov:unwind, r=Mark-Simulacrum
Centril Feb 27, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ def main():

# x.py help <cmd> ...
if len(sys.argv) > 1 and sys.argv[1] == 'help':
sys.argv = sys.argv[:1] + [sys.argv[2], '-h'] + sys.argv[3:]
sys.argv = [sys.argv[0], '-h'] + sys.argv[2:]

help_triggered = (
'-h' in sys.argv) or ('--help' in sys.argv) or (len(sys.argv) == 1)
Expand Down