gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] gawk branch, master, updated. gawk-4.1.0-5232-g31749843


From: Arnold Robbins
Subject: [SCM] gawk branch, master, updated. gawk-4.1.0-5232-g31749843
Date: Mon, 10 Apr 2023 13:00:07 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, master has been updated
       via  317498432de927c9715240e04ee02b1ef8313196 (commit)
      from  c71ae933f024fa4ff21a83038a6bebeb72efdc50 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=317498432de927c9715240e04ee02b1ef8313196

commit 317498432de927c9715240e04ee02b1ef8313196
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Mon Apr 10 19:59:49 2023 +0300

    Small typo fix in the manual.

diff --git a/awklib/eg/lib/tocsv.awk b/awklib/eg/lib/tocsv.awk
index 239822ad..42b79c5b 100644
--- a/awklib/eg/lib/tocsv.awk
+++ b/awklib/eg/lib/tocsv.awk
@@ -28,7 +28,7 @@ function tocsv(fields, sep,     i, j, nfields, result)
 }
 function tocsv_rec(sep,     i, fields)
 {
-    delete feilds
+    delete fields
     for (i = 1; i <= NF; i++)
         fields[i] = $i
 
diff --git a/doc/ChangeLog b/doc/ChangeLog
index ac984601..1a360483 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2023-04-10         Arnold D. Robbins     <arnold@skeeve.com>
+
+       * gawktexi.in (To CSV Function): Fix a typo in the code.
+       Thanks to Andrew Schorr for the catch.
+       
 2023-04-07         Arnold D. Robbins     <arnold@skeeve.com>
 
        * gawktexi.in (To CSV Function): New section.
diff --git a/doc/gawk.info b/doc/gawk.info
index 721262a5..3325a0c3 100644
--- a/doc/gawk.info
+++ b/doc/gawk.info
@@ -16813,7 +16813,7 @@ separator character as its first parameter, which it 
simply passes on to
 
      function tocsv_rec(sep,     i, fields)
      {
-         delete feilds
+         delete fields
          for (i = 1; i <= NF; i++)
              fields[i] = $i
 
diff --git a/doc/gawk.texi b/doc/gawk.texi
index 38527dca..f617db09 100644
--- a/doc/gawk.texi
+++ b/doc/gawk.texi
@@ -23901,7 +23901,7 @@ which it simply passes on to @code{tocsv()}.
 @c file eg/lib/tocsv.awk
 function tocsv_rec(sep,     i, fields)
 @{
-    delete feilds
+    delete fields
     for (i = 1; i <= NF; i++)
         fields[i] = $i
 
diff --git a/doc/gawktexi.in b/doc/gawktexi.in
index f80d0335..48e61668 100644
--- a/doc/gawktexi.in
+++ b/doc/gawktexi.in
@@ -22854,7 +22854,7 @@ which it simply passes on to @code{tocsv()}.
 @c file eg/lib/tocsv.awk
 function tocsv_rec(sep,     i, fields)
 @{
-    delete feilds
+    delete fields
     for (i = 1; i <= NF; i++)
         fields[i] = $i
 

-----------------------------------------------------------------------

Summary of changes:
 awklib/eg/lib/tocsv.awk | 2 +-
 doc/ChangeLog           | 5 +++++
 doc/gawk.info           | 2 +-
 doc/gawk.texi           | 2 +-
 doc/gawktexi.in         | 2 +-
 5 files changed, 9 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]