* copying.awk: Protoization, and I18n markup.

This commit is contained in:
Joel Brobecker
2007-08-23 20:19:32 +00:00
parent 7b4336022e
commit 07aed0ebe2
2 changed files with 11 additions and 11 deletions

View File

@ -1,3 +1,7 @@
2007-08-23 Joel Brobecker <brobecker@adacore.com>
* copying.awk: Protoization, and I18n markup.
2007-08-23 Joel Brobecker <brobecker@adacore.com>
* config/djgpp/djconfig.sh: Switch license to GPLv3.

View File

@ -15,9 +15,7 @@ BEGIN {
print ""
print "extern int immediate_quit;";
print "static void";
print "show_copying_command (ignore, from_tty)";
print " char *ignore;";
print " int from_tty;";
print "show_copying_command (char *ignore, int from_tty)";
print "{";
print " immediate_quit++;";
}
@ -39,9 +37,7 @@ NR == 1,/^[ ]*NO WARRANTY[ ]*$/ {
print "}";
print "";
print "static void";
print "show_warranty_command (ignore, from_tty)";
print " char *ignore;";
print " int from_tty;";
print "show_warranty_command (char *ignore, int from_tty)";
print "{";
print " immediate_quit++;";
}
@ -59,19 +55,19 @@ END {
print "}";
print "";
print "void"
print "_initialize_copying ()";
print "_initialize_copying (void)";
print "{";
print " add_cmd (\"copying\", no_class, show_copying_command,";
print " \"Conditions for redistributing copies of GDB.\",";
print " _(\"Conditions for redistributing copies of GDB.\"),";
print " &showlist);";
print " add_cmd (\"warranty\", no_class, show_warranty_command,";
print " \"Various kinds of warranty you do not have.\",";
print " _(\"Various kinds of warranty you do not have.\"),";
print " &showlist);";
print "";
print " /* For old-timers, allow \"info copying\", etc. */";
print " add_info (\"copying\", show_copying_command,";
print " \"Conditions for redistributing copies of GDB.\");";
print " _(\"Conditions for redistributing copies of GDB.\"));";
print " add_info (\"warranty\", show_warranty_command,";
print " \"Various kinds of warranty you do not have.\");";
print " _(\"Various kinds of warranty you do not have.\"));";
print "}";
}