]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/progmodes/hideif.el (hif-unicode-prefix-regexp): Stray `\`.
authorMattias Engdegård <mattiase@acm.org>
Tue, 15 Jun 2021 17:57:38 +0000 (19:57 +0200)
committerMattias Engdegård <mattiase@acm.org>
Wed, 16 Jun 2021 07:57:27 +0000 (09:57 +0200)
lisp/progmodes/hideif.el

index d127575255a93f5771a75158eea3f475c92fd2c5..4a1da62c7e99fa7276a3fa7518cf387abb44b2f9 100644 (file)
@@ -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 "?"
           "\\(\"\\(?:[^\"\\]\\|\\\\.\\)*\"\\)"))