diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-02-28 20:39:03 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-02-28 20:39:03 +0200 |
commit | d8a4a1e3a9096250a3938b60b90c593fe3f49fc2 (patch) | |
tree | 0ff98810a27617e50b9c00f8cf7c39ff05ddbb30 | |
parent | d5ee571f7fd7a99d4fb66894596a03a74d2ca488 (diff) | |
download | egawk-d8a4a1e3a9096250a3938b60b90c593fe3f49fc2.tar.gz egawk-d8a4a1e3a9096250a3938b60b90c593fe3f49fc2.tar.bz2 egawk-d8a4a1e3a9096250a3938b60b90c593fe3f49fc2.zip |
Small doc updates.
-rw-r--r-- | doc/ChangeLog | 6 | ||||
-rw-r--r-- | doc/gawk.info | 2 | ||||
-rw-r--r-- | doc/gawk.texi | 4 | ||||
-rw-r--r-- | doc/gawktexi.in | 4 | ||||
-rw-r--r-- | doc/gawkworkflow.info | 138 | ||||
-rw-r--r-- | doc/gawkworkflow.texi | 10 | ||||
-rw-r--r-- | doc/wordlist | 3 |
7 files changed, 88 insertions, 79 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index 58eae71d..d62a3880 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,9 @@ +2019-02-28 Arnold D. Robbins <arnold@skeeve.com> + + * gawktexi.in: Fix a spelling error, change update month. + * gawkworkflow.texi: Small fixes. + * wordlist: Updated. + 2019-02-25 Arnold D. Robbins <arnold@skeeve.com> * texinfo.tex: Updated from GNULIB. diff --git a/doc/gawk.info b/doc/gawk.info index 1c24d47d..b8ab270e 100644 --- a/doc/gawk.info +++ b/doc/gawk.info @@ -14737,7 +14737,7 @@ evaluates the expressions but then just throws them away. More importantly, such a call is confusing for whoever will next read your program.(1) Function parameters generally are input items that influence the computation performed by the function. Calling a function -with more paramaters than it accepts gives the false impression that +with more parameters than it accepts gives the false impression that those values are important to the function, when in fact they are not. Because this is such a bad practice, 'gawk' _unconditionally_ issues diff --git a/doc/gawk.texi b/doc/gawk.texi index 79679a62..7a8354eb 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -59,7 +59,7 @@ @c applies to and all the info about who's publishing this edition @c These apply across the board. -@set UPDATE-MONTH January, 2019 +@set UPDATE-MONTH February, 2019 @set VERSION 5.0 @set PATCHLEVEL 0 @@ -21116,7 +21116,7 @@ More importantly, such a call is confusing for whoever will next read your program.@footnote{Said person might even be you, sometime in the future, at which point you will wonder, ``what was I thinking?!?''} Function parameters generally are input items that influence the computation -performed by the function. Calling a function with more paramaters than +performed by the function. Calling a function with more parameters than it accepts gives the false impression that those values are important to the function, when in fact they are not. diff --git a/doc/gawktexi.in b/doc/gawktexi.in index 1962fe55..1aa632db 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -54,7 +54,7 @@ @c applies to and all the info about who's publishing this edition @c These apply across the board. -@set UPDATE-MONTH January, 2019 +@set UPDATE-MONTH February, 2019 @set VERSION 5.0 @set PATCHLEVEL 0 @@ -20158,7 +20158,7 @@ More importantly, such a call is confusing for whoever will next read your program.@footnote{Said person might even be you, sometime in the future, at which point you will wonder, ``what was I thinking?!?''} Function parameters generally are input items that influence the computation -performed by the function. Calling a function with more paramaters than +performed by the function. Calling a function with more parameters than it accepts gives the false impression that those values are important to the function, when in fact they are not. diff --git a/doc/gawkworkflow.info b/doc/gawkworkflow.info index 35b8bebd..6a1549e7 100644 --- a/doc/gawkworkflow.info +++ b/doc/gawkworkflow.info @@ -1,10 +1,10 @@ -This is gawkworkflow.info, produced by makeinfo version 6.1 from +This is gawkworkflow.info, produced by makeinfo version 6.5 from gawkworkflow.texi. -Copyright (C) 2017 Free Software Foundation, Inc. +Copyright (C) 2017, 2018, 2019 Free Software Foundation, Inc. - This is Edition 0.7 of 'Participating in 'gawk' Development'. + This is Edition 0.72 of 'Participating in 'gawk' Development'. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or @@ -35,10 +35,10 @@ General Introduction This file describes how to participate in software development for GNU Awk ('gawk') (http://www.gnu.org/software/gawk). - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017, 2018, 2019 Free Software Foundation, Inc. - This is Edition 0.7 of 'Participating in 'gawk' Development'. + This is Edition 0.72 of 'Participating in 'gawk' Development'. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or @@ -612,7 +612,7 @@ these branches with 'git branch -a': You'll note that what we've referred to as 'origin/' branches appear in the output with an additional prefix: 'remotes/'. Up to this point, -we've treated Git as if it allowed only a singled upstream repository. +we've treated Git as if it allowed only a single upstream repository. But in fact, you can configure it to use more than one. All the known upstream repositories are grouped under the 'remotes/' prefix, with 'remotes/origin' being the one from which you initially cloned your @@ -646,8 +646,8 @@ aliases are allowed. If you can't supply your real name, you cannot contribute to the project. Other options that the 'gawk' maintainer recommends that you use are: - $ git config --global push.default=simple Only push current branch - $ git config --global pager.status=true Use pager for output of git status + $ git config --global push.default simple Only push current branch + $ git config --global pager.status true Use pager for output of git status The global settings are stored in the '.gitconfig' file in your home directory. The file looks like this: @@ -1915,66 +1915,66 @@ Index Tag Table: -Node: Top1102 -Node: Preface5173 -Node: This Manual6069 -Node: Conventions7558 -Node: Acknowledgments9027 -Node: Reviewers9464 -Node: Contributing9785 -Ref: Contributing-Footnote-113140 -Node: Using Git13172 -Node: Push Pull13928 -Node: Repo Copies15343 -Ref: savannah-repo16326 -Ref: your-repo17359 -Ref: Repo Copies-Footnote-119053 -Node: Local Branches19110 -Ref: your-repo-220888 -Ref: Local Branches-Footnote-121969 -Node: Branches are state22027 -Node: Repo State22750 -Node: Local State24870 -Node: Remotes25534 -Node: Configuring git26849 -Ref: Configuring git-Footnote-129202 -Node: Development without commit access29371 -Node: Cloning30373 -Node: Switching Branches32232 -Node: Starting A New Branch32885 -Ref: Starting A New Branch-Footnote-134773 -Ref: Starting A New Branch-Footnote-234831 -Node: Undoing a change34907 -Node: Updating35508 -Node: Rebasing36010 -Node: Merge Conflicts36622 -Node: Submitting Changes38122 -Ref: Submitting Changes-Footnote-140266 -Ref: Submitting Changes-Footnote-240303 -Ref: Submitting Changes-Footnote-340339 -Node: Removing Branches40385 -Node: Points to remember40921 -Node: Development with commit access42598 -Node: Initial setup43243 -Node: ssh clone44031 -Node: Developing patches44628 -Node: Developing new features45964 -Node: Developing fixes47868 -Node: General practices48955 -Node: Repo Maintenance53697 -Ref: Repo Maintenance-Footnote-156466 -Node: Development Stuff56599 -Node: Coding style57162 -Ref: Coding style-Footnote-157820 -Node: Doing paperwork57910 -Node: Tools58705 -Node: GNU Tools59287 -Node: Compilers61448 -Ref: Compilers-Footnote-163942 -Node: Debugging63980 -Node: Cheat Sheet64686 -Node: Resources68373 -Node: TODO68816 -Node: Index69036 +Node: Top1115 +Node: Preface5199 +Node: This Manual6095 +Node: Conventions7584 +Node: Acknowledgments9053 +Node: Reviewers9490 +Node: Contributing9811 +Ref: Contributing-Footnote-113166 +Node: Using Git13198 +Node: Push Pull13954 +Node: Repo Copies15369 +Ref: savannah-repo16352 +Ref: your-repo17385 +Ref: Repo Copies-Footnote-119079 +Node: Local Branches19136 +Ref: your-repo-220914 +Ref: Local Branches-Footnote-121995 +Node: Branches are state22053 +Node: Repo State22776 +Node: Local State24896 +Node: Remotes25560 +Node: Configuring git26874 +Ref: Configuring git-Footnote-129227 +Node: Development without commit access29396 +Node: Cloning30398 +Node: Switching Branches32257 +Node: Starting A New Branch32910 +Ref: Starting A New Branch-Footnote-134798 +Ref: Starting A New Branch-Footnote-234856 +Node: Undoing a change34932 +Node: Updating35533 +Node: Rebasing36035 +Node: Merge Conflicts36647 +Node: Submitting Changes38147 +Ref: Submitting Changes-Footnote-140291 +Ref: Submitting Changes-Footnote-240328 +Ref: Submitting Changes-Footnote-340364 +Node: Removing Branches40410 +Node: Points to remember40946 +Node: Development with commit access42623 +Node: Initial setup43268 +Node: ssh clone44056 +Node: Developing patches44653 +Node: Developing new features45989 +Node: Developing fixes47893 +Node: General practices48980 +Node: Repo Maintenance53722 +Ref: Repo Maintenance-Footnote-156491 +Node: Development Stuff56624 +Node: Coding style57187 +Ref: Coding style-Footnote-157845 +Node: Doing paperwork57935 +Node: Tools58730 +Node: GNU Tools59312 +Node: Compilers61473 +Ref: Compilers-Footnote-163967 +Node: Debugging64005 +Node: Cheat Sheet64711 +Node: Resources68398 +Node: TODO68841 +Node: Index69061 End Tag Table diff --git a/doc/gawkworkflow.texi b/doc/gawkworkflow.texi index 90b3c78c..65a6cc4c 100644 --- a/doc/gawkworkflow.texi +++ b/doc/gawkworkflow.texi @@ -28,10 +28,10 @@ @c applies to and all the info about who's publishing this edition @c These apply across the board. -@set UPDATE-MONTH July, 2018 +@set UPDATE-MONTH February, 2019 @set TITLE Participating in @command{gawk} Development -@set EDITION 0.71 +@set EDITION 0.72 @iftex @set DOCUMENT booklet @@ -144,13 +144,13 @@ Fax: +1-617-542-2652 Email: <email>gnu@@gnu.org</email> URL: <ulink url="http://www.gnu.org">http://www.gnu.org/</ulink></literallayout> -<literallayout class="normal">Copyright © 2017 +<literallayout class="normal">Copyright © 2017, 2018, 2019 Free Software Foundation, Inc. All Rights Reserved.</literallayout> @end docbook @ifnotdocbook -Copyright @copyright{} 2017 +Copyright @copyright{} 2017, 2018, 2019 Free Software Foundation, Inc. @end ifnotdocbook @sp 2 @@ -851,7 +851,7 @@ $ @kbd{git branch -a} You'll note that what we've referred to as @samp{origin/} branches appear in the output with an additional prefix: @samp{remotes/}. -Up to this point, we've treated Git as if it allowed only a singled +Up to this point, we've treated Git as if it allowed only a single upstream repository. But in fact, you can configure it to use more than one. All the known upstream repositories are grouped under the @samp{remotes/} prefix, with @code{remotes/origin} being the one diff --git a/doc/wordlist b/doc/wordlist index a07d666e..640895c5 100644 --- a/doc/wordlist +++ b/doc/wordlist @@ -87,6 +87,7 @@ CRTL CSV CTYPE Callback +Cc Chana ChangeLog Chassell @@ -1532,6 +1533,7 @@ pdf pdksh pdq peifer +pengyu perl perscr perscrutabor @@ -1895,6 +1897,7 @@ username usernames usleep usr +ut utah utc utf |