Commit c9e2c191 c9e2c191664d0003d417755b367d76bbe0302be7 by Sergey Poznyakoff

Updated

1 parent 1bfed043
......@@ -2,6 +2,14 @@
* mh/mh_sequence.c (mh_seq_add): Update current_message
if the sequence being set is "cur". Free temporary storage.
* mh/components: New file
* mh/Makefile.am: Added components
* mh/mh.h (mh_interactive_mode_p, mh_getyn_interactive): New
functions.
* mh/mh_init.c (mh_interactive_mode_p, mh_getyn_interactive)
(mh_vgetyn): New functions.
(mh_real_install): Use mh_getyn_interactive().
* mh/pick.c (main): Use mh_interactive_mode_p().
2003-08-12 Sergey Poznyakoff
......@@ -16,7 +24,7 @@
* mh/mh.h: Likewise.
* mh/mark.c (main): Convert msgset to uids.
* mh/scan.c (list_message): Output an extra newline only
if the formatted buffer does not ends with one.
if the formatted buffer does not end with one.
2003-08-12 Sergey Poznyakoff
......
......@@ -642,15 +642,15 @@ mh_real_install (char *name, int automode)
{
size_t n = 0;
if (mh_getyn (_("Do you need help")))
if (mh_getyn_interactive (_("Do you need help")))
mh_install_help (mhdir);
if (!mh_getyn (_("Do you want the standard MH path \"%s\""), mhdir))
if (!mh_getyn_interactive (_("Do you want the standard MH path \"%s\""), mhdir))
{
int local;
char *p;
local = mh_getyn (_("Do you want a path below your login directory"));
local = mh_getyn_interactive (_("Do you want a path below your login directory"));
if (local)
printf (_("What is the path? "));
else
......