File 1018-Fix-make-xmllint-error.patch of Package erlang
From 40545c9dc2b939c8aa4f83ef41ae79952e27a769 Mon Sep 17 00:00:00 2001
From: Kjell Winblad <kjellwinblad@gmail.com>
Date: Tue, 1 Sep 2020 08:10:28 +0200
Subject: [PATCH 08/39] Fix `make xmllint` error
---
erts/doc/src/erlang.xml | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/erts/doc/src/erlang.xml b/erts/doc/src/erlang.xml
index a1d8e64ff2..2ced2fc457 100644
--- a/erts/doc/src/erlang.xml
+++ b/erts/doc/src/erlang.xml
@@ -10321,14 +10321,13 @@ hello
<p>If evaluated within a
<seealso marker="system/reference_manual:expressions#catch">
catch expression</seealso>, the catch expression returns value <c><anno>Any</anno></c>.
- Example:
+ Example:</p>
<pre>
> <input>catch throw({hello, there}).</input>
{hello,there}</pre>
- </p>
<p>If evaluated within a
<c>try</c>-block of a <seealso marker="system/reference_manual:expressions#try">try expression</seealso>, the value <c><anno>Any</anno></c> can be caught within the catch block.
- Example:
+ Example:</p>
<code>
try
throw({my_exception, "Something happened"})
@@ -10336,7 +10335,6 @@ catch
{my_exception, Desc} ->
io:format(standard_error, "Error: ~s~n", [Desc])
end</code>
- </p>
<p>Failure: <c>nocatch</c> if not caught by an exception handler.</p>
</desc>
</func>
--
2.26.2