summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojciech Polak <polak@gnu.org>2003-03-16 12:18:59 +0000
committerWojciech Polak <polak@gnu.org>2003-03-16 12:18:59 +0000
commit0de0bb1cd1eacebab271a09795ee22207c49c236 (patch)
tree7464057bf458ce4d5f7b3d2608f94ad45b985ab0
parentdc27967e1a633578f05ce6726aee52d0a7231756 (diff)
downloadmailutils-0de0bb1cd1eacebab271a09795ee22207c49c236.tar.gz
mailutils-0de0bb1cd1eacebab271a09795ee22207c49c236.tar.bz2
(mh_getyn, mh_real_install): Added an extra space after the question
marks.
-rw-r--r--mh/mh_init.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mh/mh_init.c b/mh/mh_init.c
index 86ef959bf..a07a28c2c 100644
--- a/mh/mh_init.c
+++ b/mh/mh_init.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -250,7 +250,7 @@ mh_getyn (const char *fmt, ...)
int len;
vfprintf (stdout, fmt, ap);
- fprintf (stdout, "?");
+ fprintf (stdout, "? ");
p = fgets (repl, sizeof repl, stdin);
if (!p)
return 0;
@@ -615,9 +615,9 @@ mh_real_install (char *name, int automode)
local = mh_getyn (_("Do you want a path below your login directory"));
if (local)
- printf (_("What is the path?"));
+ printf (_("What is the path? "));
else
- printf (_("What is the full path?"));
+ printf (_("What is the full path? "));
if (getline (&p, &n, stdin) <= 0)
exit (1);

Return to:

Send suggestions and report system problems to the System administrator.