* rename the --separate option into --terminator (mu view)

This commit is contained in:
Dirk-Jan C. Binnema
2011-07-07 22:59:44 +03:00
parent adbab879a2
commit de150bd9f7
4 changed files with 11 additions and 12 deletions

View File

@ -34,7 +34,7 @@
#include "mu-contacts.h"
#include "mu-runtime.h"
#define VIEW_SEPARATOR '\f' /* form-feed */
#define VIEW_TERMINATOR '\f' /* form-feed */
static void
@ -196,8 +196,8 @@ mu_cmd_view (MuConfig *opts)
if (rv != MU_EXITCODE_OK)
break;
/* add a separator between two messages? */
if (opts->separate)
g_print ("%c", VIEW_SEPARATOR);
if (opts->terminator)
g_print ("%c", VIEW_TERMINATOR);
}
return rv;