[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, master, updated. gawk-4.1.0-4865-ga1412f56
From: |
Arnold Robbins |
Subject: |
[SCM] gawk branch, master, updated. gawk-4.1.0-4865-ga1412f56 |
Date: |
Sun, 14 Aug 2022 14:04:15 -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 a1412f562aa8e4ab66c04507f4e171fcf22e1389 (commit)
from 4be234bc1435b927ea19b07ac888564b383291e7 (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=a1412f562aa8e4ab66c04507f4e171fcf22e1389
commit a1412f562aa8e4ab66c04507f4e171fcf22e1389
Author: Arnold D. Robbins <arnold@skeeve.com>
Date: Sun Aug 14 21:03:55 2022 +0300
More pm-gawk.1 edits.
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 717d598c..3063e65a 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -3,6 +3,7 @@
* gawktexi.in (Persistent Memory): Small addition.
* pm-gawk.1: Add a SEE ALSO section with appropriate
pointers, including to Terence Kelly's website for pma.
+ And some more cleanups.
2022-08-12 Arnold D. Robbins <arnold@skeeve.com>
diff --git a/doc/pm-gawk.1 b/doc/pm-gawk.1
index df5f68cd..c3f4c0eb 100644
--- a/doc/pm-gawk.1
+++ b/doc/pm-gawk.1
@@ -1,6 +1,6 @@
.ds EP \fIGAWK: Effective AWK Programming\fP
.ds PM \fIPersistent Memory gawk User Manual\fP
-.TH PM-GAWK 1 "Aug 12 2022" "Free Software Foundation" "Utility Commands"
+.TH PM-GAWK 1 "Aug 14 2022" "Free Software Foundation" "Utility Commands"
.SH NAME
persistent memory gawk \- persistent data and functions
.SH SYNOPSIS
@@ -61,11 +61,11 @@ Demonstrate persistent variables:
.ft CW
$ \f(CBtruncate -s 1G heap.pma\fP # create heap file
$ \f(CBexport GAWK_PERSIST_FILE=heap.pma\fP # "ambient" env var
-$ \f(CBgawk 'BEGIN{print ++i}'\fP
+$ \f(CBgawk 'BEGIN { print ++i }'\fP
1
-$ \f(CBgawk 'BEGIN{print ++i}'\fP
+$ \f(CBgawk 'BEGIN { print ++i }'\fP
2
-$ \f(CBgawk 'BEGIN{print ++i}'\fP
+$ \f(CBgawk 'BEGIN { print ++i }'\fP
3
.ft R
.fi
@@ -77,11 +77,11 @@ To pass the environment variable on per-command basis:
.nf
.ft CW
$ \f(CBunset GAWK_PERSIST_FILE\fP
-$ \f(CBGAWK_PERSIST_FILE=heap.pma gawk 'BEGIN{print ++i}'\fP
+$ \f(CBGAWK_PERSIST_FILE=heap.pma gawk 'BEGIN { print ++i }'\fP
4
-$ \f(CBGAWK_PERSIST_FILE=heap.pma gawk 'BEGIN{print ++i}'\fP
+$ \f(CBGAWK_PERSIST_FILE=heap.pma gawk 'BEGIN { print ++i }'\fP
5
-$ \f(CBGAWK_PERSIST_FILE=heap.pma gawk 'BEGIN{print ++i}'\fP
+$ \f(CBGAWK_PERSIST_FILE=heap.pma gawk 'BEGIN { print ++i }'\fP
6
.ft R
.fi
@@ -93,9 +93,9 @@ To reduce visual clutter of per-command environment variable
passing:
.nf
.ft CW
$ \f(CBalias pm='GAWK_PERSIST_FILE=heap.pma'\fP
-$ \f(CBpm gawk 'BEGIN{print ++i}'\fP
+$ \f(CBpm gawk 'BEGIN { print ++i }'\fP
7
-$ \f(CBpm gawk 'BEGIN{print ++i}'\fP
+$ \f(CBpm gawk 'BEGIN { print ++i }'\fP
8
.ft R
.fi
@@ -107,9 +107,9 @@ To refrain from activating persistence:
.nf
.ft CW
$ \f(CBunset GAWK_PERSIST_FILE\fP
-$ \f(CBgawk 'BEGIN{print ++i}'\fP
+$ \f(CBgawk 'BEGIN { print ++i }'\fP
1
-$ \f(CBgawk 'BEGIN{print ++i}'\fP
+$ \f(CBgawk 'BEGIN { print ++i }'\fP
1
.ft R
.fi
@@ -176,9 +176,8 @@ and
The two manuals should be available in the Info subsystem
if Info installed on your system.
.PP
-The latest source code and manual are always available
-from
-\f(CWhttps://web.eecs.umich.edu/~tpkelly/pma/\fP.
+See \f(CWhttps://web.eecs.umich.edu/~tpkelly/pma/\fP for
+the latest source code and manual.
.SH COPYING PERMISSIONS
Copyright \(co 2022
Terence Kelly.
-----------------------------------------------------------------------
Summary of changes:
doc/ChangeLog | 1 +
doc/pm-gawk.1 | 27 +++++++++++++--------------
2 files changed, 14 insertions(+), 14 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] gawk branch, master, updated. gawk-4.1.0-4865-ga1412f56,
Arnold Robbins <=