summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <davet@gnu.org>2015-01-08 09:23:26 -0500
committerDavid Thompson <davet@gnu.org>2015-01-08 09:23:26 -0500
commit75fec5d8e5b57c75274ce82c053358c325fcb283 (patch)
tree6431bab7ca0a9552697ff21c1197cc4f4b750728
parent4482f8778584d0ca008ba02bb95794077141f155 (diff)
Add blank line after WebVTT signature.
* srt2vtt: Add blank line between signature and first subtitle.
-rwxr-xr-xsrt2vtt2
1 files changed, 1 insertions, 1 deletions
diff --git a/srt2vtt b/srt2vtt
index 2c0e826..cbb4c6d 100755
--- a/srt2vtt
+++ b/srt2vtt
@@ -89,7 +89,7 @@
(newline port))))
(define (write-web-vtts subtitles port)
- (display "WEBVTT\n" port)
+ (format port "WEBVTT~%~%")
(for-each (cut write-web-vtt <> port) subtitles))
(define (convert input-port output-port)