talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit ab023427ff39af2deb5586e6fbde778be4e75424
parent 442281491ccc785eb47243caa525dfd71588c28a
Author: Ricardo Mones <mones@claws-mail.org>
Date:   Mon, 17 Oct 2011 10:50:28 +0000

2011-10-17 [mones]	3.7.10cvs33

	* src/main.c
		Use just one g_print call per option; correct indentation

Diffstat:
MChangeLog | 5+++++
MPATCHSETS | 1+
Mconfigure.ac | 2+-
Msrc/main.c | 16++++++++--------
4 files changed, 15 insertions(+), 9 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,8 @@ +2011-10-17 [mones] 3.7.10cvs33 + + * src/main.c + Use just one g_print call per option; correct indentation + 2011-10-17 [colin] 3.7.10cvs32 * src/compose.c diff --git a/PATCHSETS b/PATCHSETS @@ -4236,3 +4236,4 @@ ( cvs diff -u -r 1.115.2.239 -r 1.115.2.240 src/main.c; ) > 3.7.10cvs30.patchset ( cvs diff -u -r 1.12.2.69 -r 1.12.2.70 src/action.c; cvs diff -u -r 1.115.2.240 -r 1.115.2.241 src/main.c; cvs diff -u -r 1.5.2.98 -r 1.5.2.99 src/gtk/gtkutils.c; cvs diff -u -r 1.4.2.60 -r 1.4.2.61 src/gtk/gtkutils.h; ) > 3.7.10cvs31.patchset ( cvs diff -u -r 1.382.2.585 -r 1.382.2.586 src/compose.c; cvs diff -u -r 1.50.2.63 -r 1.50.2.64 src/compose.h; cvs diff -u -r 1.20.2.27 -r 1.20.2.28 src/gtk/Makefile.am; cvs diff -u -r 1.1.4.17 -r 1.1.4.18 src/gtk/gtkshruler.c; cvs diff -u -r 1.1.4.10 -r 1.1.4.11 src/gtk/gtkshruler.h; diff -u /dev/null src/gtk/gtkunit.c; diff -u /dev/null src/gtk/gtkunit.h; ) > 3.7.10cvs32.patchset +( cvs diff -u -r 1.115.2.241 -r 1.115.2.242 src/main.c; ) > 3.7.10cvs33.patchset diff --git a/configure.ac b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=7 MICRO_VERSION=10 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=32 +EXTRA_VERSION=33 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/main.c b/src/main.c @@ -2025,16 +2025,16 @@ static void parse_cmd_opt(int argc, char *argv[]) " empty line, then mail body until end of file.")); g_print("%s\n", _(" --subscribe [uri] subscribe to the given URI if possible")); g_print("%s\n", _(" --attach file1 [file2]...\n" - " open composition window with specified files\n" - " attached")); + " open composition window with specified files\n" + " attached")); g_print("%s\n", _(" --receive receive new messages")); g_print("%s\n", _(" --receive-all receive new messages of all accounts")); - g_print("%s\n", _(" --search folder type request [recursive]")); - g_print("%s\n", _(" searches mail")); - g_print("%s\n", _(" folder ex.: \"#mh/Mailbox/inbox\" or \"Mail\"")); - g_print("%s\n", _(" type: s[ubject],f[rom],t[o],e[xtended],m[ixed] or g: tag")); - g_print("%s\n", _(" request: search string")); - g_print("%s\n", _(" recursive: false if arg. starts with 0, n, N, f or F")); + g_print("%s\n", _(" --search folder type request [recursive]\n" + " searches mail\n" + " folder ex.: \"#mh/Mailbox/inbox\" or \"Mail\"\n" + " type: s[ubject],f[rom],t[o],e[xtended],m[ixed] or g: tag\n" + " request: search string\n" + " recursive: false if arg. starts with 0, n, N, f or F")); g_print("%s\n", _(" --send send all queued messages")); g_print("%s\n", _(" --status [folder]... show the total number of messages"));