You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2018/09/09 20:08:08 UTC

[royale-compiler] branch develop updated: add nbsp space entity

This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/develop by this push:
     new b3690c5  add nbsp space entity
b3690c5 is described below

commit b3690c5a9c1af4c8cd7b9ce564eef0485fbf1833
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Sun Sep 9 22:08:02 2018 +0200

    add nbsp space entity
---
 .../main/java/org/apache/royale/compiler/internal/mxml/MXMLDialect.java  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/compiler-common/src/main/java/org/apache/royale/compiler/internal/mxml/MXMLDialect.java b/compiler-common/src/main/java/org/apache/royale/compiler/internal/mxml/MXMLDialect.java
index c5ffba2..4edac91 100644
--- a/compiler-common/src/main/java/org/apache/royale/compiler/internal/mxml/MXMLDialect.java
+++ b/compiler-common/src/main/java/org/apache/royale/compiler/internal/mxml/MXMLDialect.java
@@ -98,6 +98,7 @@ public abstract class MXMLDialect
                     .put("gt", '>')
                     .put("lt", '<')
                     .put("quot", '"')
+                    .put("nbsp", ' ')
                     .build();
 
     /**