]> git.eshelyaron.com Git - emacs.git/commitdiff
Default to PCRE syntax when reading .hgignore
authorJim Blandy <jimb@red-bean.com>
Mon, 10 Apr 2017 02:52:09 +0000 (05:52 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Mon, 10 Apr 2017 02:52:40 +0000 (05:52 +0300)
* lisp/vc/vc-hg.el (vc-hg--slurp-hgignore-1):
Default to the PCRE syntax (bug#26249).

lisp/vc/vc-hg.el

index 8a2b07718cf8286190bb35fdb6c72ef198505853..e10daad72f05d37e79cddf20f9cc067169c1f49d 100644 (file)
@@ -826,7 +826,7 @@ if we don't understand a construct, we signal
      prefix)))
 
 (defun vc-hg--slurp-hgignore-1 (hgignore prefix)
-  (let ((default-syntax 'vc-hg--hgignore-add-glob))
+  (let ((default-syntax 'vc-hg--hgignore-add-pcre))
     (with-temp-buffer
       (let ((attr (file-attributes hgignore)))
         (when attr (insert-file-contents hgignore))