From 1cbeb57911519b0c3f2a1974e877585115709fa3 Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 4 Mar 2006 17:33:56 +0000 Subject: [PATCH] Make -xy help output consistent, output an empty line before and after. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17728 b3059339-0415-0410-9bf9-f77b7e298cf2 --- cfg-common.h | 2 +- libvo/x11_common.c | 2 +- m_option.c | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cfg-common.h b/cfg-common.h index ad78a98ba8..8f53557541 100644 --- a/cfg-common.h +++ b/cfg-common.h @@ -524,7 +524,7 @@ m_option_t msgl_config[]={ { "afilter", &mp_msg_levels[MSGT_AFILTER], CONF_TYPE_INT, CONF_RANGE, -1, 9, NULL }, { "netst", &mp_msg_levels[MSGT_NETST], CONF_TYPE_INT, CONF_RANGE, -1, 9, NULL }, { "muxer", &mp_msg_levels[MSGT_MUXER], CONF_TYPE_INT, CONF_RANGE, -1, 9, NULL }, - {"help", "\nAvailable msg mdoules:\n" + {"help", "Available msg modules:\n" " global - common player errors/information\n" " cplayer - console player (mplayer.c)\n" " gplayer - gui player\n" diff --git a/libvo/x11_common.c b/libvo/x11_common.c index 04a04d2b7e..739fbd7ac7 100644 --- a/libvo/x11_common.c +++ b/libvo/x11_common.c @@ -240,7 +240,7 @@ void fstype_help(void) "use _NETWM_STATE_STAYS_ON_TOP hint if available"); mp_msg(MSGT_VO, MSGL_INFO, "You can also negate the settings with simply putting '-' in the beginning"); - mp_msg(MSGT_VO, MSGL_INFO, "\n\n"); + mp_msg(MSGT_VO, MSGL_INFO, "\n"); } static void fstype_dump(int fstype) diff --git a/m_option.c b/m_option.c index 47a14c46c2..ce253f6784 100644 --- a/m_option.c +++ b/m_option.c @@ -1584,6 +1584,7 @@ static int parse_obj_settings_list(m_option_t* opt,char *name, mp_msg(MSGT_VFILTER,MSGL_INFO," %-15s: %s\n", M_ST_MB(char*,ol->list[n],ol->name_off), M_ST_MB(char*,ol->list[n],ol->info_off)); + mp_msg(MSGT_VFILTER,MSGL_INFO,"\n"); return M_OPT_EXIT - 1; } ptr = str = strdup(param);