summaryrefslogblamecommitdiff
path: root/system/yaml/fix-emitter-0.2.1.patch
blob: f3614e349608d86fb73bf21c102ec0f79ef67717 (plain) (tree)


































                                                                              
Contributor Note: This patch will be part of v0.2.2 which hasn't been
formally released as of 2018-11-20. It should be removed once this
package is version bumped.

From e5ebb70a01cc0fbd9e519050d51d704f58c2a33d Mon Sep 17 00:00:00 2001
From: James Clarke <jrtc27@jrtc27.com>
Date: Thu, 29 Jun 2017 02:26:09 +0100
Subject: [PATCH 2/2] Skip trailing document terminator at the end of the
 stream

---
 src/emitter.c | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/src/emitter.c b/src/emitter.c
index c593a7d..1502590 100644
--- a/src/emitter.c
+++ b/src/emitter.c
@@ -649,14 +649,6 @@ yaml_emitter_emit_document_start(yaml_emitter_t *emitter,
 
     else if (event->type == YAML_STREAM_END_EVENT)
     {
-        if (emitter->open_ended)
-        {
-            if (!yaml_emitter_write_indicator(emitter, "...", 1, 0, 0))
-                return 0;
-            if (!yaml_emitter_write_indent(emitter))
-                return 0;
-        }
-
         if (!yaml_emitter_flush(emitter))
             return 0;
 
-- 
2.13.2