Fix program descriptions (docstings).
* config/mailutils-config.c: Terminate docstring with a period. * dotlock/dotlock.c: Likewise. * frm/frm.c: Likewise. * frm/from.c: Likewise. * imap4d/imap4d.c: Likewise. * maidag/maidag.c: Likewise. * pop3d/pop3d.c: Likewise. * readmsg/readmsg.c: Likewise. * sieve/sieve.c: Likewise.
Showing
9 changed files
with
9 additions
and
9 deletions
... | @@ -26,7 +26,7 @@ | ... | @@ -26,7 +26,7 @@ |
26 | #include "mailutils/libargp.h" | 26 | #include "mailutils/libargp.h" |
27 | 27 | ||
28 | const char *program_version = "mailutils-config (" PACKAGE_STRING ")"; | 28 | const char *program_version = "mailutils-config (" PACKAGE_STRING ")"; |
29 | static char doc[] = N_("GNU mailutils-config -- display compiler and loader options needed for building a program with mailutils"); | 29 | static char doc[] = N_("GNU mailutils-config -- display compiler and loader options needed for building a program with mailutils."); |
30 | static char args_doc[] = N_("[arg...]"); | 30 | static char args_doc[] = N_("[arg...]"); |
31 | 31 | ||
32 | static struct argp_option options[] = { | 32 | static struct argp_option options[] = { | ... | ... |
... | @@ -35,7 +35,7 @@ | ... | @@ -35,7 +35,7 @@ |
35 | 35 | ||
36 | const char *program_version = "GNU dotlock (" PACKAGE_STRING ")"; | 36 | const char *program_version = "GNU dotlock (" PACKAGE_STRING ")"; |
37 | static char doc[] = | 37 | static char doc[] = |
38 | N_("GNU dotlock -- lock mail spool files") | 38 | N_("GNU dotlock -- lock mail spool files.") |
39 | "\v" | 39 | "\v" |
40 | N_("Returns 0 on success, 3 if locking the file fails because\ | 40 | N_("Returns 0 on success, 3 if locking the file fails because\ |
41 | it's already locked, and 1 if some other kind of error occurred."); | 41 | it's already locked, and 1 if some other kind of error occurred."); | ... | ... |
... | @@ -32,7 +32,7 @@ static int align = 0; /* Tidy mode. -t option. */ | ... | @@ -32,7 +32,7 @@ static int align = 0; /* Tidy mode. -t option. */ |
32 | static int select_attribute; | 32 | static int select_attribute; |
33 | 33 | ||
34 | const char *program_version = "frm (" PACKAGE_STRING ")"; | 34 | const char *program_version = "frm (" PACKAGE_STRING ")"; |
35 | static char doc[] = N_("GNU frm -- display From: lines"); | 35 | static char doc[] = N_("GNU frm -- display From: lines."); |
36 | 36 | ||
37 | static struct attr_tab { | 37 | static struct attr_tab { |
38 | char *name; /* Attribute name */ | 38 | char *name; /* Attribute name */ | ... | ... |
... | @@ -23,7 +23,7 @@ char *sender_option; | ... | @@ -23,7 +23,7 @@ char *sender_option; |
23 | char *mailbox_name; | 23 | char *mailbox_name; |
24 | 24 | ||
25 | const char *program_version = "from (" PACKAGE_STRING ")"; | 25 | const char *program_version = "from (" PACKAGE_STRING ")"; |
26 | static char doc[] = N_("GNU from -- display from and subject"); | 26 | static char doc[] = N_("GNU from -- display from and subject."); |
27 | 27 | ||
28 | static struct argp_option options[] = { | 28 | static struct argp_option options[] = { |
29 | {"count", 'c', NULL, 0, N_("just print a count of messages and exit")}, | 29 | {"count", 'c', NULL, 0, N_("just print a count of messages and exit")}, | ... | ... |
... | @@ -55,7 +55,7 @@ char *ident_keyfile; | ... | @@ -55,7 +55,7 @@ char *ident_keyfile; |
55 | int ident_encrypt_only; | 55 | int ident_encrypt_only; |
56 | 56 | ||
57 | const char *program_version = "imap4d (" PACKAGE_STRING ")"; | 57 | const char *program_version = "imap4d (" PACKAGE_STRING ")"; |
58 | static char doc[] = N_("GNU imap4d -- the IMAP4D daemon"); | 58 | static char doc[] = N_("GNU imap4d -- the IMAP4D daemon."); |
59 | 59 | ||
60 | #define OPT_LOGIN_DISABLED 256 | 60 | #define OPT_LOGIN_DISABLED 256 |
61 | #define OPT_TLS_REQUIRED 257 | 61 | #define OPT_TLS_REQUIRED 257 | ... | ... |
... | @@ -56,7 +56,7 @@ int reuse_lmtp_address = 1; | ... | @@ -56,7 +56,7 @@ int reuse_lmtp_address = 1; |
56 | 56 | ||
57 | const char *program_version = "maidag (" PACKAGE_STRING ")"; | 57 | const char *program_version = "maidag (" PACKAGE_STRING ")"; |
58 | static char doc[] = | 58 | static char doc[] = |
59 | N_("GNU maidag -- the mail delivery agent") | 59 | N_("GNU maidag -- the mail delivery agent.") |
60 | "\v" | 60 | "\v" |
61 | N_("Debug flags are:\n\ | 61 | N_("Debug flags are:\n\ |
62 | g - guimb stack traces\n\ | 62 | g - guimb stack traces\n\ | ... | ... |
... | @@ -54,7 +54,7 @@ int expire_on_exit = 0; /* Delete expired messages on exit */ | ... | @@ -54,7 +54,7 @@ int expire_on_exit = 0; /* Delete expired messages on exit */ |
54 | static error_t pop3d_parse_opt (int key, char *arg, struct argp_state *astate); | 54 | static error_t pop3d_parse_opt (int key, char *arg, struct argp_state *astate); |
55 | 55 | ||
56 | const char *program_version = "pop3d (" PACKAGE_STRING ")"; | 56 | const char *program_version = "pop3d (" PACKAGE_STRING ")"; |
57 | static char doc[] = N_("GNU pop3d -- the POP3 daemon"); | 57 | static char doc[] = N_("GNU pop3d -- the POP3 daemon."); |
58 | 58 | ||
59 | #define OPT_LOGIN_DELAY 257 | 59 | #define OPT_LOGIN_DELAY 257 |
60 | #define OPT_STAT_FILE 258 | 60 | #define OPT_STAT_FILE 258 | ... | ... |
... | @@ -34,7 +34,7 @@ static void print_body (mu_message_t); | ... | @@ -34,7 +34,7 @@ static void print_body (mu_message_t); |
34 | static int string_starts_with (const char * s1, const char *s2); | 34 | static int string_starts_with (const char * s1, const char *s2); |
35 | 35 | ||
36 | const char *program_version = "readmsg (" PACKAGE_STRING ")"; | 36 | const char *program_version = "readmsg (" PACKAGE_STRING ")"; |
37 | static char doc[] = N_("GNU readmsg -- print messages"); | 37 | static char doc[] = N_("GNU readmsg -- print messages."); |
38 | static error_t readmsg_parse_opt (int key, char *arg, struct argp_state *astate); | 38 | static error_t readmsg_parse_opt (int key, char *arg, struct argp_state *astate); |
39 | 39 | ||
40 | static struct argp_option options[] = | 40 | static struct argp_option options[] = | ... | ... |
... | @@ -51,7 +51,7 @@ | ... | @@ -51,7 +51,7 @@ |
51 | const char *program_version = "sieve (" PACKAGE_STRING ")"; | 51 | const char *program_version = "sieve (" PACKAGE_STRING ")"; |
52 | 52 | ||
53 | static char doc[] = | 53 | static char doc[] = |
54 | N_("GNU sieve -- a mail filtering tool") | 54 | N_("GNU sieve -- a mail filtering tool.") |
55 | "\v" | 55 | "\v" |
56 | N_("Debug flags:\n\ | 56 | N_("Debug flags:\n\ |
57 | g - main parser traces\n\ | 57 | g - main parser traces\n\ | ... | ... |
-
Please register or sign in to post a comment