From: Joel Brobecker Date: Thu, 23 Aug 2007 20:19:32 +0000 (+0000) Subject: * copying.awk: Protoization, and I18n markup. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=07aed0ebe25052be568e0b9569487883a9025794;p=binutils-gdb.git * copying.awk: Protoization, and I18n markup. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1b3a149bca2..7d34f3c29fd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2007-08-23 Joel Brobecker + + * copying.awk: Protoization, and I18n markup. + 2007-08-23 Joel Brobecker * config/djgpp/djconfig.sh: Switch license to GPLv3. diff --git a/gdb/copying.awk b/gdb/copying.awk index 53f7a6f518d..94e5f1b2105 100644 --- a/gdb/copying.awk +++ b/gdb/copying.awk @@ -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 "}"; }