File 1079-Replace-old-test-BIFs-w-o-is_-prefix-in-documentatio.patch of Package erlang

From 852874f57ba68df754e63cd38f60f6df7d085207 Mon Sep 17 00:00:00 2001
From: Dieter Schoen <dieter@schoen.or.at>
Date: Sat, 12 Dec 2020 19:54:33 +0100
Subject: [PATCH] Replace old test BIFs w/o is_ prefix in documentation code
 examples

---
 lib/tools/doc/src/fprof.xml                             | 2 +-
 system/doc/programming_examples/list_comprehensions.xml | 4 ++--
 system/doc/programming_examples/records.xml             | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/tools/doc/src/fprof.xml b/lib/tools/doc/src/fprof.xml
index 5d2683846f..b3ba4a200c 100644
--- a/lib/tools/doc/src/fprof.xml
+++ b/lib/tools/doc/src/fprof.xml
@@ -598,7 +598,7 @@
 -module(foo).
 -export([create_file_slow/2]).
 
-create_file_slow(Name, N) when integer(N), N >= 0 ->
+create_file_slow(Name, N) when is_integer(N), N >= 0 ->
     {ok, FD} = 
         file:open(Name, [raw, write, delayed_write, binary]),
     if N > 256 ->
diff --git a/system/doc/programming_examples/list_comprehensions.xml b/system/doc/programming_examples/list_comprehensions.xml
index 706cb337ad..f9ce57f478 100644
--- a/system/doc/programming_examples/list_comprehensions.xml
+++ b/system/doc/programming_examples/list_comprehensions.xml
@@ -40,10 +40,10 @@
         <c>[1,2,a,...]</c> and X is greater than 3.</p>
     <p>The notation <c><![CDATA[X <- [1,2,a,...]]]></c> is a generator and
       the expression <c>X > 3</c> is a filter.</p>
-    <p>An additional filter, <c>integer(X)</c>, can be added to restrict
+    <p>An additional filter, <c>is_integer(X)</c>, can be added to restrict
       the result to integers:</p>
     <pre>
-> <input>[X || X &lt;- [1,2,a,3,4,b,5,6], integer(X), X > 3].</input>
+> <input>[X || X &lt;- [1,2,a,3,4,b,5,6], is_integer(X), X > 3].</input>
 [4,5,6]</pre>
     <p>Generators can be combined. For example, the Cartesian product
       of two lists can be written as follows:</p>
diff --git a/system/doc/programming_examples/records.xml b/system/doc/programming_examples/records.xml
index d74ce22e4e..04c06816c5 100644
--- a/system/doc/programming_examples/records.xml
+++ b/system/doc/programming_examples/records.xml
@@ -222,7 +222,7 @@ print(#person{name = Name, age = Age,
 
 %% Demonstrates type testing, selector, updating.
 
-birthday(P) when record(P, person) -> 
+birthday(P) when is_record(P, person) -> 
    P#person{age = P#person.age + 1}.
 
 register_two_hackers() ->
-- 
2.26.2

openSUSE Build Service is sponsored by