diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-03-31 22:59:51 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-03-31 22:59:51 +0200 |
commit | b1746329b7749a8f760bab04c12e5127a23e46ed (patch) | |
tree | 404a97cae18ca57da54125252af291415128f57f /extension | |
parent | 089e787a5a970f8005cf4ee34b152bf1747b14b0 (diff) | |
download | egawk-b1746329b7749a8f760bab04c12e5127a23e46ed.tar.gz egawk-b1746329b7749a8f760bab04c12e5127a23e46ed.tar.bz2 egawk-b1746329b7749a8f760bab04c12e5127a23e46ed.zip |
Lots of documentation updates.
Diffstat (limited to 'extension')
-rw-r--r-- | extension/ChangeLog | 6 | ||||
-rw-r--r-- | extension/filefuncs.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/extension/ChangeLog b/extension/ChangeLog index 926bf0b5..3e1de05c 100644 --- a/extension/ChangeLog +++ b/extension/ChangeLog @@ -1,4 +1,8 @@ -Thu Jan 13 20:37:02 2011 Andrew J. Schorr <aschorr@telemetry-investments.com> +Thu Mar 31 22:58:19 2011 Arnold D. Robbins <arnold@skeeve.com> + + * filefuncs.c (do_stat): Fix a comment. Also in doc. + +Thu Jan 13 20:37:02 2011 Andrew J. Schorr <aschorr@telemetry-investments.com> * filefuncs.c (do_stat): Malloc the buffer to read the contents of the link. From mail of June 21, 2005. diff --git a/extension/filefuncs.c b/extension/filefuncs.c index 7efa912e..ad7828f3 100644 --- a/extension/filefuncs.c +++ b/extension/filefuncs.c @@ -172,7 +172,7 @@ do_stat(int nargs) if (do_lint && get_curfunc_arg_count() > 2) lintwarn("stat: called with too many arguments"); - /* directory is first arg, array to hold results is second */ + /* file is first arg, array to hold results is second */ file = get_scalar_argument(0, FALSE); array = get_array_argument(1, FALSE); |