Commit 0de0bb1c 0de0bb1cd1eacebab271a09795ee22207c49c236 by Wojciech Polak

(mh_getyn, mh_real_install): Added an extra space after the question

marks.
1 parent dc27967e
/* 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);
......