branch: externals/consult
commit f31ac4de49974b9fcfe585bb19199ffa6b115582
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>

    Expand comment
---
 consult.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/consult.el b/consult.el
index c66db9d..81b6872 100644
--- a/consult.el
+++ b/consult.el
@@ -555,8 +555,10 @@ This function only changes the escaping of parentheses, 
braces and pipes."
       regexp
     ;; See 
https://stackoverflow.com/questions/1946352/comparison-table-for-emacs-regexp-and-perl-compatible-regular-expression-pcre
     ;; XXX Unsupported Emacs regexp features:
-    ;; * "*" at the beginning of a choice, e.g, "\(?:*" or "\|*"
-    ;; * Backslash constructs \= \sx \Sx \cx \Cx
+    ;; - * at the beginning of a choice, e.g, \(?:* or \|*
+    ;; - \= point matching
+    ;; - Syntax classes \sx \Sx
+    ;; - Character classes \cx \Cx
     (let ((swap '(("\\|" . "|")
                     ("\\(" . "(") ("\\)" . ")")
                     ("\\{" . "{") ("\\}" . "}")))

Reply via email to