summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-04 17:33:56 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-04 17:33:56 +0000
commit1cbeb57911519b0c3f2a1974e877585115709fa3 (patch)
tree60defbf84092dbde184f23e8959acf4faabf2315
parent0a163ed4e4e85034faac52a86219c18b21cb53e7 (diff)
downloadmpv-1cbeb57911519b0c3f2a1974e877585115709fa3.tar.bz2
mpv-1cbeb57911519b0c3f2a1974e877585115709fa3.tar.xz
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
-rw-r--r--cfg-common.h2
-rw-r--r--libvo/x11_common.c2
-rw-r--r--m_option.c1
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);