Skip to content

Rollup of 13 pull requests #67043

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 39 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
5a9b704
Improve comments about NodeStates.
nnethercote Nov 12, 2019
c45fc6b
Give two functions clearer names.
nnethercote Nov 14, 2019
c874789
remove dependency from libhermit
stlankes Nov 25, 2019
481b18a
Small error codes explanation cleanup (E0092, E0093 and E0094)
GuillaumeGomez Nov 30, 2019
e4b2cb8
Add support for RISC-V 64-bit GNU/Linux
msizanoen1 Nov 23, 2019
930a0a2
Update libc
msizanoen1 Nov 30, 2019
5748b4c
Add missing check
GuillaumeGomez Nov 27, 2019
35ba58f
Remove minification on search-index.js file
GuillaumeGomez Nov 27, 2019
852079f
minify theme.js as well
GuillaumeGomez Nov 27, 2019
85df207
Use Module::print() instead of a PrintModulePass
Dec 2, 2019
2d0f0ca
Add missing backline
GuillaumeGomez Dec 2, 2019
7693bb9
Add long error for E0631 and update ui tests.
reese Dec 3, 2019
26a1ba8
Use simpler code example for E0631 long error.
reese Dec 3, 2019
3091b82
Tweak wording of `collect()` on bad target type
estebank Nov 26, 2019
911b7d6
Update missed test.
reese Dec 3, 2019
c911bb1
clean up E0107 error explanation
GuillaumeGomez Nov 30, 2019
1fa948f
capitalize Rust
andrewbanchich Dec 4, 2019
f6b435d
Accurately portray raw identifiers in error messages
estebank Dec 4, 2019
168e35d
Include a span in more `expected...found` notes
Aaron1011 Dec 4, 2019
b5ad0cb
review comments: move test
estebank Dec 4, 2019
0103308
Account for raw idents in module file finding
estebank Dec 4, 2019
c2ce7dd
Clean up E0116 error code long explanation
GuillaumeGomez Dec 4, 2019
1e5450d
Clean up E0117 error code long explanation
GuillaumeGomez Dec 4, 2019
9eaea4d
Clean up E0118 error code long explanation
GuillaumeGomez Dec 4, 2019
ae753a5
some error codes long explanation
GuillaumeGomez Dec 4, 2019
8be7223
Fix docs for formatting delegations
elichai Dec 4, 2019
3844ecb
Rollup merge of #66405 - nnethercote:tweak-ObligForest-NodeStates, r=…
JohnTitor Dec 5, 2019
3799a3f
Rollup merge of #66730 - hermitcore:master, r=alexcrichton
JohnTitor Dec 5, 2019
b4e4707
Rollup merge of #66764 - estebank:reword-bad-collect, r=alexcrichton
JohnTitor Dec 5, 2019
ac97356
Rollup merge of #66828 - GuillaumeGomez:less-minification, r=kinnison
JohnTitor Dec 5, 2019
d4b923a
Rollup merge of #66899 - msizanoen1:riscv-std, r=alexcrichton
JohnTitor Dec 5, 2019
0559618
Rollup merge of #66900 - GuillaumeGomez:clean-up-err-codes, r=Dylan-DPC
JohnTitor Dec 5, 2019
efcca89
Rollup merge of #66952 - 0dvictor:print, r=rkruppe
JohnTitor Dec 5, 2019
da1b26f
Rollup merge of #66979 - reese:E0631-long-error, r=GuillaumeGomez
JohnTitor Dec 5, 2019
7291c76
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
JohnTitor Dec 5, 2019
2750309
Rollup merge of #67010 - estebank:raw-idents, r=Centril
JohnTitor Dec 5, 2019
5dcefce
Rollup merge of #67011 - Aaron1011:fix/expected-found-span, r=Dylan-DPC
JohnTitor Dec 5, 2019
ae38687
Rollup merge of #67017 - GuillaumeGomez:long-err-explanations-2, r=Dy…
JohnTitor Dec 5, 2019
18fe87b
Rollup merge of #67021 - elichai:2019-12-fmt, r=QuietMisdreavus
JohnTitor Dec 5, 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
Add missing check
  • Loading branch information
GuillaumeGomez committed Dec 2, 2019
commit 5748b4ce95a2aaba6fede25408f59d044a8e0804
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1221,7 +1221,7 @@ function getSearchElement() {
// then an exact path match
path.indexOf(keys[i]) > -1 ||
// next if there is a parent, check for exact parent match
(parent !== undefined &&
(parent !== undefined && parent.name !== undefined &&
parent.name.toLowerCase().indexOf(keys[i]) > -1) ||
// lastly check to see if the name was a levenshtein match
levenshtein(name, keys[i]) <= MAX_LEV_DISTANCE)) {
Expand Down