* copying.awk: Protoization, and I18n markup.
authorJoel Brobecker <brobecker@gnat.com>
Thu, 23 Aug 2007 20:19:32 +0000 (20:19 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Thu, 23 Aug 2007 20:19:32 +0000 (20:19 +0000)
gdb/ChangeLog
gdb/copying.awk

index 1b3a149..7d34f3c 100644 (file)
@@ -1,5 +1,9 @@
 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.
        * copyright.sh: Likewise.
        * gdb-events.sh: Likewise.
index 53f7a6f..94e5f1b 100644 (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 "}";
        }