diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ChangeLog | 4 | ||||
-rw-r--r-- | doc/gawk.texi | 11 |
2 files changed, 10 insertions, 5 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index f8f83fca..815644ca 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,7 @@ +2012-03-26 Arnold D. Robbins <arnold@skeeve.com> + + * gawk.texi: Minor style edits. + 2012-03-21 Andrew J. Schorr <aschorr@telemetry-investments.com> * gawk.texi, gawk.1: Document new @load keyword. diff --git a/doc/gawk.texi b/doc/gawk.texi index c3375ce8..eaad54d2 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -3883,19 +3883,20 @@ suffix to the filename. For example, on GNU/Linux systems, the suffix @samp{.so} is used. @example -$ @kbd{awk '@@load "ordchr"; BEGIN @{print chr(65)@}'} -A +$ @kbd{gawk '@@load "ordchr"; BEGIN @{print chr(65)@}'} +@print{} A @end example @noindent This is equivalent to the following example: @example -$ @kbd{awk -lordchr 'BEGIN @{print chr(65)@}'} -A +$ @kbd{gawk -lordchr 'BEGIN @{print chr(65)@}'} +@print{} A @end example -@noindent For command-line usage, the @option{-l} option is more convenient, +@noindent +For command-line usage, the @option{-l} option is more convenient, but @samp{@@load} is useful for embedding inside an @command{awk} source file that requires access to a shared library. |