; eliminate backslash duplicate in regexp

* lisp/editorconfig-fnmatch.el (editorconfig-fnmatch--do-translate):
Remove superfluous backslash.
This commit is contained in:
Mattias Engdegård 2024-06-21 17:20:42 +02:00
parent 5bc76dbc9d
commit 052d2cd258

View file

@ -146,7 +146,7 @@ translation is found for PATTERN."
(while (< index length)
(if (and (not is-escaped)
(string-match "[^]\\*?[{},/\\-]+"
(string-match "[^]\\*?[{},/-]+"
;;(string-match "[^]\\*?[{},/\\-]+" "?.a")
pattern
index)