branch: externals/yaml commit 4a3243a2be33bb644d66f13c0382f73d7c14b365 Author: Kisaragi Hiu <m...@kisaragi-hiu.com> Commit: Kisaragi Hiu <m...@kisaragi-hiu.com>
yaml--the-end: fix incorrect regexp --- yaml.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yaml.el b/yaml.el index 0c17aca32c..4a2d73e328 100644 --- a/yaml.el +++ b/yaml.el @@ -932,7 +932,7 @@ This is currently unimplemented." (and (yaml--state-curr-doc) (yaml--start-of-line) (string-match - "\\^g(?:---|\\.\\.\\.\\)\\([[:blank:]]\\|$\\)" + "\\^g\\(?:---|\\.\\.\\.\\)\\([[:blank:]]\\|$\\)" (substring yaml--parsing-input yaml--parsing-position))))) (defun yaml--ord (f)