Function: orderless-literal
orderless-literal is a byte-compiled function defined in orderless.el.
Signature
(orderless-literal COMPONENT)
Documentation
Match COMPONENT as a literal string.
Source Code
;; Defined in ~/.emacs.d/elpa/orderless-20260519.1029/orderless.el
(defun orderless-literal (component)
"Match COMPONENT as a literal string."
;; Do not use (literal component) here, such that `delete-dups' in
;; `orderless--compile-component' has a chance to delete duplicates for
;; literal input. The default configuration of `orderless-matching-styles'
;; with `orderless-regexp' and `orderless-literal' leads to duplicates.
(regexp-quote component))