Skip to content

Rolling up PRs in the queue #15163

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

Merged
merged 26 commits into from
Jun 25, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f7f95c8
std: Bring back half of Add on String
alexcrichton May 28, 2014
9e3d0b0
librustc: Remove the fallback to `int` from typechecking.
nikomatsakis Apr 21, 2014
d58412b
Add more description to c_str::unwrap().
steveklabnik Jun 23, 2014
bf61bb6
Add tests for #12470 and #14285
edwardw Jun 23, 2014
e16a875
Remove the cheat sheet.
steveklabnik Jun 23, 2014
b18c4cf
rustc: Always include the morestack library
alexcrichton Jun 23, 2014
85effb9
Improve ambiguous pronoun.
steveklabnik Jun 23, 2014
c484c2d
Fix #15129
Jun 23, 2014
3ed78f5
Add the Guide, add warning to tutorial.
steveklabnik Jun 23, 2014
a4a0c69
added xfailed tests for two other flavors of var hygiene
jbclements Sep 21, 2013
1ea2efe
added xfailed test for issue 9737
jbclements Nov 22, 2013
adbd5d7
core: Add stability attributes to Clone
brson Jun 23, 2014
4203dcb
core: Remove bool::to_bit
brson Jun 23, 2014
250e236
Move core::bool tests to run-pass
brson Jun 23, 2014
808b848
std: Add stability attributes to primitive numeric modules
brson Jun 23, 2014
5807800
Fix grammar in tutorial
Dominator008 Jun 24, 2014
e4e3550
Remove few FIXMEs
Sawyer47 Jun 23, 2014
a0ec902
Avoid unnecessary temporary on assignments
dotdash Jun 22, 2014
4e26e2d
Use macros to implement syntax::ext::quote::ToSource
kmcallister Jun 21, 2014
26b2fa0
Allow splicing more things in quotes
kmcallister Jun 21, 2014
5ccf056
Make parse_expr_res public
kmcallister Jun 24, 2014
75146fd
librustc: Check function argument patterns for legality of by-move
pcwalton Jun 24, 2014
86dda1b
test: Add a test for regions, traits, and variance.
pcwalton Jun 24, 2014
fb296b8
rustc: Don't register syntax crates twice
alexcrichton Jun 24, 2014
d6a4c43
Stabilize version output for rustc and rustdoc
May 19, 2014
cdccecb
Test fixes from the rollup
alexcrichton Jun 25, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -869,14 +869,14 @@ do
make_dir $h/test/debuginfo-lldb
make_dir $h/test/codegen
make_dir $h/test/doc-tutorial
make_dir $h/test/doc-guide
make_dir $h/test/doc-guide-ffi
make_dir $h/test/doc-guide-runtime
make_dir $h/test/doc-guide-macros
make_dir $h/test/doc-guide-lifetimes
make_dir $h/test/doc-guide-pointers
make_dir $h/test/doc-guide-container
make_dir $h/test/doc-guide-tasks
make_dir $h/test/doc-complement-cheatsheet
make_dir $h/test/doc-rust
done

Expand Down
4 changes: 2 additions & 2 deletions mk/docs.mk
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
# L10N_LANGS are the languages for which the docs have been
# translated.
######################################################################
DOCS := index intro tutorial guide-ffi guide-macros guide-lifetimes \
DOCS := index intro tutorial guide guide-ffi guide-macros guide-lifetimes \
guide-tasks guide-container guide-pointers guide-testing \
guide-runtime complement-bugreport complement-cheatsheet \
guide-runtime complement-bugreport \
complement-lang-faq complement-design-faq complement-project-faq rust \
rustdoc guide-unsafe

Expand Down
10 changes: 8 additions & 2 deletions mk/main.mk
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ SPACE :=
SPACE +=
ifneq ($(wildcard $(subst $(SPACE),\$(SPACE),$(CFG_GIT))),)
ifneq ($(wildcard $(subst $(SPACE),\$(SPACE),$(CFG_GIT_DIR))),)
CFG_VERSION += $(shell git --git-dir='$(CFG_GIT_DIR)' log -1 \
--pretty=format:'(%h %ci)')
CFG_VER_DATE = $(shell git --git-dir='$(CFG_GIT_DIR)' log -1 --pretty=format:'%ci')
CFG_VER_HASH = $(shell git --git-dir='$(CFG_GIT_DIR)' rev-parse HEAD)
CFG_VERSION += ($(CFG_VER_HASH) $(CFG_VER_DATE))
endif
endif

Expand Down Expand Up @@ -272,6 +272,12 @@ $(foreach host,$(CFG_HOST), \

export CFG_SRC_DIR
export CFG_BUILD_DIR
ifdef CFG_VER_DATE
export CFG_VER_DATE
endif
ifdef CFG_VER_HASH
export CFG_VER_HASH
endif
export CFG_VERSION
export CFG_VERSION_WIN
export CFG_RELEASE
Expand Down
280 changes: 0 additions & 280 deletions src/doc/complement-cheatsheet.md

This file was deleted.

Loading