Commit 33a277e9 33a277e9f8e8541fee73f902413afb100e48b95c by Sergey Poznyakoff

mh: Minor fixes.

1 parent 1a8279af
......@@ -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);
......
......@@ -78,7 +78,7 @@ AM_CPPFLAGS = \
-DPYTHON_LIBS="\"$(PYTHON_LIBS)\"" \
-DI18NLIBS="\"$(LIBINTL)\""
BUILD_SOURCES=mu-setup.c mu-setup.h
BUILT_SOURCES=mu-setup.c mu-setup.h
EXTRA_DIST=mu-setup.c mu-setup.h
mu-setup.h: Makefile.am $(MODULES) $(IDLE_MODULES)
......