aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2006-09-11 18:28:51 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2006-09-11 18:28:51 +0000
commit83856de963f9341b9c05853841685e4fbbcaf228 (patch)
tree215e76c9899f7f5e05a614127ddb6ca650d0726e /src/main.c
parent6a530016680ba5502ea5b8a8c483c754f912b811 (diff)
downloadcflow-83856de963f9341b9c05853841685e4fbbcaf228.tar.gz
cflow-83856de963f9341b9c05853841685e4fbbcaf228.tar.bz2
(doc): Reformat argp docstring in accordance with the
new argp guidelines. Remove unneeded translators comment. (main): Set program_name.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c
index e7ed4a8..3e933d9 100644
--- a/src/main.c
+++ b/src/main.c
@@ -24,9 +24,9 @@
24 24
25const char *argp_program_version = "cflow (" PACKAGE_NAME ") " VERSION; 25const char *argp_program_version = "cflow (" PACKAGE_NAME ") " VERSION;
26const char *argp_program_bug_address = "<" PACKAGE_BUGREPORT ">"; 26const char *argp_program_bug_address = "<" PACKAGE_BUGREPORT ">";
27/* TRANSLATORS: Please, preserve the vertical tabulation (^K character) 27static char doc[] = N_("generate a program flowgraph")
28 in this message */ 28"\v"
29static char doc[] = N_("generate a program flowgraph\v* The effect of each option marked with an asterisk is reversed if the option's long name is prefixed with `no-'. For example, --no-cpp cancels --cpp."); 29N_("* The effect of each option marked with an asterisk is reversed if the option's long name is prefixed with `no-'. For example, --no-cpp cancels --cpp.");
30 30
31enum option_code { 31enum option_code {
32 OPT_DEFINES = 256, 32 OPT_DEFINES = 256,
@@ -746,6 +746,8 @@ main(int argc, char **argv)
746{ 746{
747 int index; 747 int index;
748 748
749 program_name = argv[0]; /* Until gnulib provides a better way */
750
749 setlocale(LC_ALL, ""); 751 setlocale(LC_ALL, "");
750 bindtextdomain(PACKAGE, LOCALEDIR); 752 bindtextdomain(PACKAGE, LOCALEDIR);
751 textdomain(PACKAGE); 753 textdomain(PACKAGE);
@@ -755,7 +757,7 @@ main(int argc, char **argv)
755 757
756 symbol_map = SM_FUNCTIONS|SM_STATIC; 758 symbol_map = SM_FUNCTIONS|SM_STATIC;
757 759
758 if (getenv ("POSIXLY_CORRECT")) { 760 if (getenv("POSIXLY_CORRECT")) {
759 if (select_output_driver("posix")) 761 if (select_output_driver("posix"))
760 error(1, 0, _("%s: No such output driver"), "posix"); 762 error(1, 0, _("%s: No such output driver"), "posix");
761 output_init(); 763 output_init();

Return to:

Send suggestions and report system problems to the System administrator.