branch: externals/yaml
commit b72c188381a0cc6596b683e4cf1fed51a0706a39
Author: Zachary Romero <[email protected]>
Commit: Zachary Romero <[email protected]>
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))))))