Skip to content

Rollup of 13 pull requests #73756

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 28 commits into from
Jun 26, 2020
Merged
Changes from 2 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
e4b7d2c
Omit DW_AT_linkage_name when it is the same as DW_AT_name
tmiasko May 26, 2020
e85df08
Don't move cursor in search box when using arrows to navigate search …
carols10cents Jun 2, 2020
8a816ca
Cleanup MinGW LLVM linkage workaround
mati865 Jun 19, 2020
8d0e882
Fix handling of reserved registers for ARM inline asm
Amanieu Jun 21, 2020
a98868d
Update asm! documentation
Amanieu Jun 21, 2020
2792014
Make AssocOp Copy
flip1995 Jun 22, 2020
86f6c0e
Record span of `const` kw in GenericParamKind
ayazhafiz Jun 21, 2020
ecb8b9f
Update Chalk
jackh726 May 27, 2020
2735f43
Fix links in `SliceIndex` documentation
LeSeulArtichaut Jun 24, 2020
11a3584
emitter: column width defaults to 140
davidtwco Jun 25, 2020
f13d89e
disable collectionbenches for android
nellshamrell Jun 25, 2020
5c88b51
add exception for liballoc benches to tidy
nellshamrell Jun 25, 2020
77b0ed7
proc_macro: Stop flattening groups with dummy spans
petrochenkov Jun 7, 2020
d279b3c
Add code block to code in documentation of `List::rebase_onto`
jyn514 Jun 26, 2020
75983e1
Support configurable deny-warnings for all in-tree crates.
ehuss Jun 12, 2020
14dc103
Rollup merge of #72620 - tmiasko:linkage-name, r=eddyb
Manishearth Jun 26, 2020
a25fbb9
Rollup merge of #72967 - integer32llc:prevent-default-arrows, r=kinnison
Manishearth Jun 26, 2020
2aee608
Rollup merge of #73102 - petrochenkov:flatgroup, r=Aaron1011
Manishearth Jun 26, 2020
10d655b
Rollup merge of #73297 - ehuss:tool-warnings, r=Mark-Simulacrum
Manishearth Jun 26, 2020
25671fa
Rollup merge of #73507 - mati865:cleanup-mingw-llvm-linkage, r=matthe…
Manishearth Jun 26, 2020
81d2d3c
Rollup merge of #73588 - Amanieu:thumb-fp, r=nagisa
Manishearth Jun 26, 2020
7f6dfb4
Rollup merge of #73597 - ayazhafiz:i/const-span, r=ecstatic-morse
Manishearth Jun 26, 2020
3d7521d
Rollup merge of #73629 - flip1995:assoc_op_copy_clone, r=Manishearth
Manishearth Jun 26, 2020
1755e3b
Rollup merge of #73681 - jackh726:chalk-0.14, r=nikomatsakis
Manishearth Jun 26, 2020
6061752
Rollup merge of #73707 - LeSeulArtichaut:patch-3, r=kennytm
Manishearth Jun 26, 2020
97ccd97
Rollup merge of #73719 - davidtwco:issue-72509-emitter-column-width, …
Manishearth Jun 26, 2020
91a638d
Rollup merge of #73729 - nellshamrell:disable-collectionsbenches-andr…
Manishearth Jun 26, 2020
a7eee3c
Rollup merge of #73748 - jyn514:doc-fix, r=Manishearth
Manishearth Jun 26, 2020
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: 2 additions & 0 deletions src/librustdoc/html/static/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1408,6 +1408,7 @@ function defocusSearchBar() {

addClass(actives[currentTab][0].previousElementSibling, "highlighted");
removeClass(actives[currentTab][0], "highlighted");
e.preventDefault();
} else if (e.which === 40) { // down
if (!actives[currentTab].length) {
var results = document.getElementById("results").childNodes;
Expand All @@ -1421,6 +1422,7 @@ function defocusSearchBar() {
addClass(actives[currentTab][0].nextElementSibling, "highlighted");
removeClass(actives[currentTab][0], "highlighted");
}
e.preventDefault();
} else if (e.which === 13) { // return
if (actives[currentTab].length) {
document.location.href =
Expand Down