Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
24c770b
aarch64: Make `outline-atomics` a known target feature
tgross35 Aug 1, 2025
566cdab
Clarify `value_path_str_with_args`.
nnethercote Aug 1, 2025
b0c36dd
Rename most of the printers.
nnethercote Aug 1, 2025
d76eef4
Simplify multiple things.
nnethercote Aug 1, 2025
070425e
Add aarch64_be-unknown-none-softfloat target
Gelbpunkt Aug 5, 2025
dfd38f0
Add comments to `Printer`.
nnethercote Aug 1, 2025
69bcd79
Move `should_truncate` from trait `Printer` to sub-trait `PrettyPrint…
nnethercote Aug 3, 2025
b8adda6
Rename some `Printer` methods.
nnethercote Aug 3, 2025
42a1042
Rename some `PrettyPrinter` methods.
nnethercote Aug 3, 2025
2563e4a
[AVR] Changed data_layout
tomtor Aug 11, 2025
db1a64c
simplify stack handling, be completely lazy
lcnr Aug 5, 2025
0b855bc
Switch to a bitflags `MacroKinds` to support macros with more than on…
joshtriplett Aug 8, 2025
d7b30be
Expand documentation of `GlobDelegation`
joshtriplett Aug 9, 2025
c81fcac
Only suggest changing `#[derive(mymacro)]` to `#[mymacro]` for attrib…
joshtriplett Aug 9, 2025
ba231db
Detect and report macro kind mismatches early, and more precisely
joshtriplett Aug 9, 2025
b74e1cb
mbe: Rename macro parsing state names to use `Bang` instead of `Not`
joshtriplett Aug 9, 2025
33ba4a2
clippy: Update for switch to `MacroKinds`
joshtriplett Aug 9, 2025
e1fc89a
rustdoc: Minimal fixes to compile with `MacroKinds`
joshtriplett Aug 9, 2025
6e5a6e0
Install libgccjit into the compiler's sysroot when the GCC codegen ba…
Kobzol Aug 13, 2025
76bc558
Make sure that we won't accidentally ship libgccjit.so in the dist co…
Kobzol Aug 13, 2025
f40a784
Remove the `libgccjit.so.0` alias and only create the versioned libra…
Kobzol Aug 13, 2025
cd79c71
Correctly handle when there are no unstable items in the documented c…
GuillaumeGomez Aug 13, 2025
dc0707a
Add another example for escaped `#` character in doctest in rustdoc book
GuillaumeGomez Aug 13, 2025
6c96c94
Add missing entry in STAGE0_MISSING_TARGETS
Gelbpunkt Aug 13, 2025
ea70ac6
Rollup merge of #144761 - tgross35:cfg-outline-atomics, r=davidtwco
GuillaumeGomez Aug 13, 2025
e7e3a37
Rollup merge of #144949 - nnethercote:more-Printer-cleanups, r=davidtwco
GuillaumeGomez Aug 13, 2025
c9c8d03
Rollup merge of #144955 - lcnr:lazily-update-non-parent-goals, r=BoxyUwU
GuillaumeGomez Aug 13, 2025
0774928
Rollup merge of #144962 - Gelbpunkt:aarch64_be-unknown-none-softfloat…
GuillaumeGomez Aug 13, 2025
bd6fb63
Rollup merge of #145153 - joshtriplett:macro-kinds-plural, r=petroche…
GuillaumeGomez Aug 13, 2025
a6146fd
Rollup merge of #145241 - tomtor:avr-layout, r=nikic
GuillaumeGomez Aug 13, 2025
6f0746d
Rollup merge of #145341 - Kobzol:codegen-backend-gcc, r=jieyouxu
GuillaumeGomez Aug 13, 2025
858927c
Rollup merge of #145349 - GuillaumeGomez:unstable-items-search, r=lol…
GuillaumeGomez Aug 13, 2025
bb46a20
Rollup merge of #145356 - GuillaumeGomez:doctest-escaped, r=fmease
GuillaumeGomez Aug 13, 2025
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
Correctly handle when there are no unstable items in the documented c…
…rate
  • Loading branch information
GuillaumeGomez committed Aug 13, 2025
commit cd79c7189db7b611f9199fd12ba56563afa18642
4 changes: 3 additions & 1 deletion src/librustdoc/html/static/js/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -2060,7 +2060,9 @@ class DocSearch {
// Deprecated and unstable items and items with no description
this.searchIndexDeprecated.set(crate, new RoaringBitmap(crateCorpus.c));
this.searchIndexEmptyDesc.set(crate, new RoaringBitmap(crateCorpus.e));
this.searchIndexUnstable.set(crate, new RoaringBitmap(crateCorpus.u));
if (crateCorpus.u !== undefined && crateCorpus.u !== null) {
this.searchIndexUnstable.set(crate, new RoaringBitmap(crateCorpus.u));
}
let descIndex = 0;

/**
Expand Down
Loading