Function: orderless-regexp
orderless-regexp is a byte-compiled function defined in orderless.el.
Signature
(orderless-regexp COMPONENT)
Documentation
Match COMPONENT as a regexp.
Source Code
;; Defined in ~/.emacs.d/elpa/orderless-20260519.1029/orderless.el
;;; Matching styles
(defun orderless-regexp (component)
"Match COMPONENT as a regexp."
(condition-case nil
(progn (string-match-p component "") component)
(invalid-regexp nil)))