mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-14 03:15:06 +08:00
* copying.awk: Protoization, and I18n markup.
This commit is contained in:
@ -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.
|
||||
|
@ -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 "}";
|
||||
}
|
||||
|
Reference in New Issue
Block a user