Skip to content

Rollup of 8 pull requests #67356

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 22 commits into from
Dec 16, 2019
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
cc863f0
Improve `str` prefix/suffix comparison
ranma42 Dec 11, 2019
1f6d023
Prefer encoding the char when checking for string prefix/suffix
ranma42 Dec 11, 2019
de7fefa
Minor cleanup in `Pattern::{is_prefix_of,is_suffix_of}` for `char`
ranma42 Dec 12, 2019
2514cd5
Delete flaky test net::tcp::tests::fast_rebind
dtolnay Dec 15, 2019
f2d6413
comment -> doc comment
Centril Dec 15, 2019
d848ce0
document check_pat_slice
Centril Dec 15, 2019
66bb978
improve hir::PatKind::Slice docs
Centril Dec 15, 2019
7bf55f4
use Self alias in place of macros
tesuji Dec 15, 2019
5d73af2
make transparent enums more ordinary
Centril Dec 15, 2019
5f68732
Fix JS error when loading page with search
GuillaumeGomez Dec 15, 2019
d9d1f23
improve lower_pat_slice docs + while -> for
Centril Dec 15, 2019
00e7ff4
.gitignore: Don't ignore a file that exists in the repository
joshtriplett Dec 16, 2019
d16b088
Minor: update Unsize docs for dyn syntax
petertodd Dec 16, 2019
3de1923
Add benchmarks for `start_with` and `ends_with`
ranma42 Dec 16, 2019
a6f817f
Rollup merge of #67249 - ranma42:improve-starts-with-literal-char, r=…
Centril Dec 16, 2019
a1580e7
Rollup merge of #67308 - dtolnay:fast_rebind, r=alexcrichton
Centril Dec 16, 2019
f05646e
Rollup merge of #67318 - Centril:spdocs, r=matthewjasper
Centril Dec 16, 2019
5609683
Rollup merge of #67322 - lzutao:nonzero-use-self, r=joshtriplett
Centril Dec 16, 2019
a1e8a0a
Rollup merge of #67323 - Centril:tes, r=davidtwco
Centril Dec 16, 2019
55753a6
Rollup merge of #67336 - GuillaumeGomez:fix-js-error, r=Dylan-DPC
Centril Dec 16, 2019
a17535c
Rollup merge of #67344 - joshtriplett:no-gitignore-of-committed-files…
Centril Dec 16, 2019
733559b
Rollup merge of #67349 - petertodd:2019-unsize-docs, r=Centril
Centril Dec 16, 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
Prev Previous commit
Next Next commit
Fix JS error when loading page with search
GuillaumeGomez committed Dec 15, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 5f68732b04a7414f7fb9597b9c432410d2cfe972
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/main.js
Original file line number Diff line number Diff line change
@@ -2683,7 +2683,7 @@ function getSearchElement() {
insertAfter(popup, getSearchElement());
}

onHashChange();
onHashChange(null);
window.onhashchange = onHashChange;

buildHelperPopup();