Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
91e70973
Commit
91e70973
authored
Sep 30, 2006
by
dionoea
Browse files
Add $_ line skip variable.
parent
96a9147c
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/video_filter/marq.c
View file @
91e70973
...
...
@@ -90,8 +90,8 @@ struct filter_sys_t
"$d = description, $e = encoded by, $g = genre, " \
"$l = language, $n = track num, $p = now playing, " \
"$r = rating, $t = title, $u = url, $A = date, " \
"$D = duration, $F = full name with path, $L = time left " \
"$N = name, $P = publisher, $T = time) ")
"$D = duration, $F = full name with path, $L = time left
,
" \
"$N = name, $P = publisher, $T = time
, $_ = new line
) ")
#define POSX_TEXT N_("X offset")
#define POSX_LONGTEXT N_("X offset, from the left screen edge." )
#define POSY_TEXT N_("Y offset")
...
...
@@ -410,7 +410,10 @@ char *FormatMeta( vlc_object_t *p_object, char *string )
}
INSERT_STRING
(
1
,
buf
);
break
;
case
'_'
:
*
d
=
'\n'
;
d
++
;
break
;
default:
*
d
=
*
s
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment