From a78b0f182749b9e22047193987dc537927009f52 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sun, 14 Jul 1996 17:48:00 +0000 Subject: * MakeTAGS (extract): Pass --add-comments=TRANS. * sysdeps/gnu/errlist.awk: Write comments into the output with the descriptive paragraphs from the manual preceded by TRANS. --- sysdeps/gnu/errlist.awk | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'sysdeps') diff --git a/sysdeps/gnu/errlist.awk b/sysdeps/gnu/errlist.awk index e6ca81a4ad..c68e70df9a 100644 --- a/sysdeps/gnu/errlist.awk +++ b/sysdeps/gnu/errlist.awk @@ -21,6 +21,8 @@ # @comment POSIX.1: Function not implemented # @deftypevr Macro int ENOSYS # @comment errno 78 +# Descriptive paragraph... +# @end deftypevr BEGIN { alias["EWOULDBLOCK"] = "EAGAIN"; @@ -54,10 +56,23 @@ errnoh == 3 && $1 == "@comment" && $2 == "errno" \ printf "#if defined (%s) && %s != %s\n", e, e, alias[e]; else printf "#ifdef %s\n", e; + errnoh = 4; + desc=""; + next; + } +errnoh == 4 && $1 == "@end" && $2 == "deftypevr" \ + { + printf "/*%s */\n", desc; printf " [%s] = N_(\"%s\"),\n", e, etext; print "#endif"; + errnoh = 0; next; } +errnoh == 4 \ + { + # This magic tag in C comments gets them copied into libc.pot. + desc = desc "\nTRANS " $0; next + } { errnoh=0 } END { print " };"; -- cgit v1.2.3