Skip to content

Rollup of 13 pull requests #36220

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 30 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
0384722
Add `must_use` to the Reference
Aug 17, 2016
33560ee
add links to interesting items in `std::ptr` documentation
matthew-piziak Aug 21, 2016
89f7e92
demonstrate `RHS != Self` use cases for `Add` and `Sub`
matthew-piziak Aug 18, 2016
7782838
refactor range examples
matthew-piziak Aug 17, 2016
c330046
add `fn main` wrappers to enable Rust Playground "Run" button
matthew-piziak Aug 23, 2016
34be21d
add a note that whitespace alignment is nonidiomatic
matthew-piziak Aug 23, 2016
b5ce02c
remove references to `zero_memory` and `copy_memory`
matthew-piziak Aug 30, 2016
e0279d7
Normalize the function signature of closures
Aatch Aug 31, 2016
9a400f0
replace `../` with `../../std/` to support `core` docs
matthew-piziak Aug 31, 2016
1b04762
Special case a few colors for Windows
Aug 31, 2016
439afcd
Update error message for lifetime of borrowed values
Sep 1, 2016
7d5fa9e
configure: check if any of the arguments contain --help
0xmohit Sep 1, 2016
0f8eb81
Document try!'s error conversion behaviour
skade Aug 29, 2016
7cd4e7f
Fixed E0528 label and unit test
Sep 1, 2016
96283fc
test: Add a min-llvm-version directive
alexcrichton Sep 1, 2016
7f95bb0
Fixed E0529's label and unit test
Sep 2, 2016
3a96fe3
Transition Travis CI to use rustbuild.
frewsxcv Aug 31, 2016
a6cfc58
Rollup merge of #35754 - QuietMisdreavus:must-use-reference, r=Manish…
Sep 2, 2016
fc7c26f
Rollup merge of #35759 - matthew-piziak:refactor-range-examples, r=st…
Sep 2, 2016
dfce548
Rollup merge of #35793 - matthew-piziak:add-rhs-example, r=steveklabnik
Sep 2, 2016
8d4f1c1
Rollup merge of #35880 - matthew-piziak:ptr-linking, r=steveklabnik
Sep 2, 2016
0868aaa
Rollup merge of #36099 - skade:better-try-documentation, r=steveklabnik
Sep 2, 2016
7b36b2f
Rollup merge of #36160 - Aatch:normalize-closure-sig, r=eddyb
Sep 2, 2016
39fde84
Rollup merge of #36171 - jonathandturner:temporary_value, r=nikomatsakis
Sep 2, 2016
0fee067
Rollup merge of #36178 - jonathandturner:windows_colors, r=nikomatsakis
Sep 2, 2016
1bc229f
Rollup merge of #36180 - frewsxcv:patch-33, r=alexcrichton
Sep 2, 2016
8e566f8
Rollup merge of #36190 - 0xmohit:pr/issue-31216, r=alexcrichton
Sep 2, 2016
8b0bb4e
Rollup merge of #36198 - alexcrichton:fix-travis, r=brson
Sep 2, 2016
12c7a91
Rollup merge of #36205 - EugeneGonzalez:E0528, r=jonathandturner
Sep 2, 2016
ec291dc
Rollup merge of #36210 - EugeneGonzalez:E0529, r=jonathandturner
Sep 2, 2016
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
12 changes: 8 additions & 4 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,13 @@ abs_path() {
(unset CDPATH && cd "$_path" > /dev/null && pwd)
}

HELP=0
for arg; do
case "$arg" in
--help) HELP=1;;
esac
done

msg "looking for configure programs"
need_cmd cmp
need_cmd mkdir
Expand Down Expand Up @@ -566,11 +573,8 @@ esac


OPTIONS=""
HELP=0
if [ "$1" = "--help" ]
if [ "$HELP" -eq 1 ]
then
HELP=1
shift
echo
echo "Usage: $CFG_SELF [options]"
echo
Expand Down