Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
c9e2c191
...
c9e2c191664d0003d417755b367d76bbe0302be7
authored
2003-08-13 16:05:47 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Updated
1 parent
1bfed043
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
5 deletions
ChangeLog
mh/mh_init.c
ChangeLog
View file @
c9e2c19
...
...
@@ -2,7 +2,15 @@
*
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
*
mh
/
folder
.
c
(
_scan
)
:
Prompt
for
creating
the
folder
...
...
@@ -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
end
s
with
one
.
if
the
formatted
buffer
does
not
end
with
one
.
2003
-
08
-
12
Sergey
Poznyakoff
...
...
mh/mh_init.c
View file @
c9e2c19
...
...
@@ -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
...
...
Please
register
or
sign in
to post a comment