emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/yaml 3381a5d2f7 109/124: Merge pull request #43 from ki


From: ELPA Syncer
Subject: [elpa] externals/yaml 3381a5d2f7 109/124: Merge pull request #43 from kisaragi-hiu/fix/regexp-missing-escape
Date: Fri, 29 Nov 2024 16:00:09 -0500 (EST)

branch: externals/yaml
commit 3381a5d2f739b35cbc75827bec7003e5c0e9f296
Merge: e787dd06c6 4a3243a2be
Author: Zachary Romero <zacromero@posteo.net>
Commit: GitHub <noreply@github.com>

    Merge pull request #43 from kisaragi-hiu/fix/regexp-missing-escape
    
    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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]