From: Mikael Djurfeldt Date: Wed, 14 Jun 2000 00:59:42 +0000 (+0000) Subject: * guile-snarf.awk.in: Replace the dot_doc_file arg with "-", X-Git-Url: http://git.hcoop.net/bpt/guile.git/commitdiff_plain/f7736e9a6e2f40ace58ac7dea5bb7217d5307356 * guile-snarf.awk.in: Replace the dot_doc_file arg with "-", indicating stdin, instead of "" and don't reset ARGC. This is a workaround for `nawk' in AIX 4.3 on RS6000 but, as far as I know, it is correct, and perhaps even better. --- diff --git a/libguile/guile-snarf.awk.in b/libguile/guile-snarf.awk.in index b49b590fc..582b5a61d 100644 --- a/libguile/guile-snarf.awk.in +++ b/libguile/guile-snarf.awk.in @@ -2,8 +2,7 @@ # 12-Dec-1999 BEGIN { FS="|"; - dot_doc_file = ARGV[1]; ARGV[1] = ""; - ARGC = 0; + dot_doc_file = ARGV[1]; ARGV[1] = "-"; std_err = "/dev/stderr"; # be sure to put something in the files to help make out print "";