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
33a277e9
...
33a277e9f8e8541fee73f902413afb100e48b95c
authored
2010-11-18 20:05:25 +0200
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
mh: Minor fixes.
1 parent
1a8279af
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
mh/prompter.c
mu/Makefile.am
mh/prompter.c
View file @
33a277e
...
...
@@ -263,7 +263,7 @@ main (int argc, char **argv)
if
(
prepend_option
)
{
mu_stream_printf
(
strout
,
"
\n
--------%s
\n\n
"
,
_
(
"Enter initial text"
));
while
(
newval
=
prompter_get_line
(
))
while
(
(
newval
=
prompter_get_line
()
))
{
mu_stream_write
(
tmp
,
newval
,
strlen
(
newval
),
NULL
);
free
(
newval
);
...
...
@@ -286,7 +286,7 @@ main (int argc, char **argv)
if
(
!
prepend_option
&&
!
rapid_option
)
{
printf
(
"
\n
--------%s
\n\n
"
,
_
(
"Enter additional text"
));
while
(
newval
=
prompter_get_line
(
))
while
(
(
newval
=
prompter_get_line
()
))
{
mu_stream_write
(
tmp
,
newval
,
strlen
(
newval
),
NULL
);
free
(
newval
);
...
...
mu/Makefile.am
View file @
33a277e
...
...
@@ -78,7 +78,7 @@ AM_CPPFLAGS = \
-DPYTHON_LIBS
=
"
\"
$(PYTHON_LIBS)
\"
"
\
-DI18NLIBS
=
"
\"
$(LIBINTL)
\"
"
BUIL
D
_SOURCES
=
mu-setup.c mu-setup.h
BUIL
T
_SOURCES
=
mu-setup.c mu-setup.h
EXTRA_DIST
=
mu-setup.c mu-setup.h
mu-setup.h
:
Makefile.am $(MODULES) $(IDLE_MODULES)
...
...
Please
register
or
sign in
to post a comment