diff --git a/src/items/external-blocks.md b/src/items/external-blocks.md
index 5839f242b..74aa5cedb 100644
--- a/src/items/external-blocks.md
+++ b/src/items/external-blocks.md
@@ -5,7 +5,7 @@ r[items.extern]
r[items.extern.syntax]
> **Syntax**\
> _ExternBlock_ :\
-> `unsafe`? `extern` [_Abi_]? `{`\
+> `unsafe`?[^unsafe-2024] `extern` [_Abi_]? `{`\
> [_InnerAttribute_]\*\
> _ExternalItem_\*\
> `}`
@@ -15,6 +15,8 @@ r[items.extern.syntax]
> [_MacroInvocationSemi_]\
> | ( [_Visibility_]? ( [_StaticItem_] | [_Function_] ) )\
> )
+>
+> [^unsafe-2024]: Starting with the 2024 Edition, the `unsafe` keyword is required semantically.
r[items.extern.intro]
External blocks provide _declarations_ of items that are not _defined_ in the
@@ -31,6 +33,12 @@ Calling functions or accessing statics that are declared in external blocks is o
r[items.extern.namespace]
The external block defines its functions and statics in the [value namespace] of the module or block where it is located.
+r[items.extern.unsafe-required]
+The `unsafe` keyword is semantically required to appear before the `extern` keyword on external blocks.
+
+r[items.extern.edition2024]
+> **Edition differences**: Prior to the 2024 edition, the `unsafe` keyword is optional. The `safe` and `unsafe` item qualifiers are only allowed if the external block itself is marked as `unsafe`.
+
## Functions
r[items.extern.fn]
diff --git a/src/items/functions.md b/src/items/functions.md
index 8300ad19d..1fe173e70 100644
--- a/src/items/functions.md
+++ b/src/items/functions.md
@@ -11,7 +11,7 @@ r[items.fn.syntax]
> ( [_BlockExpression_] | `;` )
>
> _FunctionQualifiers_ :\
-> `const`? `async`[^async-edition]? _ItemSafety_? (`extern` _Abi_?)?
+> `const`? `async`[^async-edition]? _ItemSafety_?[^extern-qualifiers] (`extern` _Abi_?)?
>
> _ItemSafety_ :\
> `safe`[^extern-safe] | `unsafe`
@@ -48,6 +48,10 @@ r[items.fn.syntax]
> [^extern-safe]: The `safe` function qualifier is only allowed semantically within
> `extern` blocks.
>
+> [^extern-qualifiers]: *Relevant to editions earlier than Rust 2024*: Within
+> `extern` blocks, the `safe` or `unsafe` function qualifier is only allowed
+> when the `extern` is qualified as `unsafe`.
+>
> [^fn-param-2015]: Function parameters with only a type are only allowed
> in an associated function of a [trait item] in the 2015 edition.
diff --git a/src/unsafe-keyword.md b/src/unsafe-keyword.md
index 232fcca1b..333140dd1 100644
--- a/src/unsafe-keyword.md
+++ b/src/unsafe-keyword.md
@@ -81,6 +81,9 @@ r[unsafe.extern]
The programmer who declares an [external block] must assure that the signatures of the items contained within are correct. Failing to do so may lead to undefined behavior. That this obligation has been met is indicated by writing `unsafe extern`.
+r[unsafe.extern.edition2024]
+> **Edition differences**: Prior to edition 2024, `extern` blocks were allowed without being qualified as `unsafe`.
+
[external block]: items/external-blocks.md
## Unsafe attributes (`#[unsafe(attr)]`)
diff --git a/src/unsafety.md b/src/unsafety.md
index daa6834b5..88aaf373b 100644
--- a/src/unsafety.md
+++ b/src/unsafety.md
@@ -26,11 +26,13 @@ r[safety.unsafe-impl]
- Implementing an [unsafe trait].
r[safety.unsafe-extern]
-- Declaring an [`extern`] block.
+- Declaring an [`extern`] block[^extern-2024].
r[safety.unsafe-attribute]
- Applying an [unsafe attribute] to an item.
+[^extern-2024]: Prior to the 2024 edition, extern blocks were allowed to be declared without `unsafe`.
+
[`extern`]: items/external-blocks.md
[`union`]: items/unions.md
[mutable]: items/static-items.md#mutable-statics