Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
31bc385
rustdoc: Document effect of fundamental types
chrysn Oct 4, 2022
f708c82
rename rustc_allocator_nounwind to rustc_nounwind
RalfJung Oct 6, 2022
95838c6
Add `IsTerminal` trait to determine if a descriptor or handle is a te…
joshtriplett Jun 12, 2022
516577d
Make is_terminal fail fast if a process has no console at all
joshtriplett Jun 20, 2022
af470ad
Rewrite FILE_NAME_INFO handling to avoid enlarging slice reference
joshtriplett Aug 24, 2022
ef009b6
Use Align8 to avoid misalignment if the allocator or Vec doesn't alig…
joshtriplett Sep 9, 2022
1283441
Let llvm-config tell us where to find its tools
cuviper Oct 7, 2022
40e497f
Add llvm-tblgen to rust-dev for cross-compiling
cuviper Oct 7, 2022
c327719
Bump download-ci-llvm-stamp
cuviper Oct 7, 2022
a027474
Don't run llvm-config in dry runs
cuviper Oct 7, 2022
b7562b1
add panic_fmt_nounwind for panicing without unwinding, and use it for…
RalfJung Oct 6, 2022
ba38030
use panic_fmt_nounwind for assert_unsafe_precondition
RalfJung Oct 6, 2022
27f0a5f
reorder panicking.rs to put main entry points at the top
RalfJung Oct 8, 2022
7e64000
Document `rust-docs-json` component
aDotInTheVoid Oct 8, 2022
d60e8ec
Change default lint level of INVALID_HTML_TAGS to warning
GuillaumeGomez Sep 12, 2022
bdb502f
Update rustdoc tests
GuillaumeGomez Sep 13, 2022
e340796
Stabilize rustdoc CHECK_INVALID_HTML_TAGS check
GuillaumeGomez Sep 12, 2022
4ee7db2
Fix doc lint error
GuillaumeGomez Oct 8, 2022
4d9d7bf
Remove empty core::lazy and std::lazy
est31 Oct 8, 2022
d180d6b
Rollup merge of #98033 - joshtriplett:is-terminal-fd-handle, r=thomcc
matthiaskrgr Oct 8, 2022
6671a42
Rollup merge of #101720 - GuillaumeGomez:warn-INVALID_HTML_TAGS, r=no…
matthiaskrgr Oct 8, 2022
13c85bc
Rollup merge of #102661 - chrysn-pull-requests:rustdoc-effect-of-fund…
matthiaskrgr Oct 8, 2022
b6e9ec6
Rollup merge of #102732 - RalfJung:assert_unsafe_precondition2, r=bjorn3
matthiaskrgr Oct 8, 2022
87e219a
Rollup merge of #102790 - cuviper:llvm-tblgen, r=jyn514
matthiaskrgr Oct 8, 2022
9f7213f
Rollup merge of #102807 - aDotInTheVoid:rdj-rustup-docs, r=jyn514
matthiaskrgr Oct 8, 2022
8e4edd1
Rollup merge of #102812 - est31:remove_lazy, r=dtolnay
matthiaskrgr Oct 8, 2022
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
Stabilize rustdoc CHECK_INVALID_HTML_TAGS check
  • Loading branch information
GuillaumeGomez committed Oct 8, 2022
commit e340796c23276b20584f0b16a9a49da42b59c344
6 changes: 2 additions & 4 deletions src/librustdoc/passes/html_tags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ struct InvalidHtmlTagsLinter<'a, 'tcx> {
}

pub(crate) fn check_invalid_html_tags(krate: Crate, cx: &mut DocContext<'_>) -> Crate {
if cx.tcx.sess.is_nightly_build() {
let mut coll = InvalidHtmlTagsLinter { cx };
coll.visit_crate(&krate);
}
let mut coll = InvalidHtmlTagsLinter { cx };
coll.visit_crate(&krate);
krate
}

Expand Down