branch: externals/yaml
commit a19fbf948a945571300e5a20ff1dbfa6ecfa0d16
Merge: 73fde9d8fb b72c188381
Author: Zachary Romero <zacrom...@posteo.net>
Commit: GitHub <nore...@github.com>

    Merge pull request #46 from zkry/45-fix-char-escape
    
    Fix character escape code
---
 yaml.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/yaml.el b/yaml.el
index 6262ca2406..9f1a6744f2 100644
--- a/yaml.el
+++ b/yaml.el
@@ -2402,7 +2402,7 @@ Rules for this function are defined by the yaml-spec JSON 
file."
 
     ('ns-esc-8-bit
      (yaml--frame "ns-esc-8-bit"
-       (yaml--all (yaml--chr ?\x)
+       (yaml--all (yaml--chr ?x)
                   (yaml--rep 2 2
                     (lambda () (yaml--parse-from-grammar 'ns-hex-digit))))))
 

Reply via email to