From eac34b52f6764808b0a8a1c3a5e9a1f703e55c7a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Tue, 15 Jun 2021 19:57:38 +0200 Subject: [PATCH] ; * lisp/progmodes/hideif.el (hif-unicode-prefix-regexp): Stray `\`. --- lisp/progmodes/hideif.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/hideif.el b/lisp/progmodes/hideif.el index d127575255a..4a1da62c7e9 100644 --- a/lisp/progmodes/hideif.el +++ b/lisp/progmodes/hideif.el @@ -694,7 +694,7 @@ that form should be displayed.") "\\|\\(\\w+\\)")) ;; C++11 Unicode string literals (L"" u8"" u"" U"" R"" LR"" u8R"" uR"") -(defconst hif-unicode-prefix-regexp "\\(?:u8R?\\|[uUL]R?\\\|R\\)") +(defconst hif-unicode-prefix-regexp "\\(?:u8R?\\|[uUL]R?\\|R\\)") (defconst hif-string-literal-regexp (concat hif-unicode-prefix-regexp "?" "\\(\"\\(?:[^\"\\]\\|\\\\.\\)*\"\\)")) -- 2.39.5