* 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.
This commit is contained in:
Roland McGrath 1996-07-14 17:48:00 +00:00
parent b1dbbaa48c
commit a78b0f1827
4 changed files with 22 additions and 1 deletions

View File

@ -1,5 +1,9 @@
Sun Jul 14 01:51:39 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* 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.
* elf/rtld.c (RESOLVE): Use the dl's load address, not a constant zero!
(_dl_start): Move RESOLVE defn inside this function and #include
"dynamic-link.h" a second time there.

View File

@ -132,7 +132,7 @@ endif
define extract
@rm -f $@.new
$(XGETTEXT) --keyword=_ --keyword=N_ --sort-output -d - \
$(XGETTEXT) --keyword=_ --keyword=N_ --add-comments=TRANS --sort-output -d - \
$(XGETTEXTFLAGS-$(@F)) > $@.new $^
mv -f $@.new $@
endef

View File

@ -869,6 +869,8 @@ up, before it has connected to the file.
@deftypevr Macro int ED
@comment errno 102 @c DO NOT REMOVE
The experienced user will know what is wrong.
@c This error code is a joke. Its perror text is part of the joke.
@c Don't change it.
@end deftypevr
@comment errno.h

View File

@ -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 " };";