Function: projectile-replace--line-matches-p
projectile-replace--line-matches-p is a byte-compiled function defined
in projectile.el.
Signature
(projectile-replace--line-matches-p M REGEXP)
Documentation
Return non-nil when match M's context line matches REGEXP.
Honors the buffer's case setting.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-replace--line-matches-p (m regexp)
"Return non-nil when match M's context line matches REGEXP.
Honors the buffer's case setting."
(let ((case-fold-search projectile-replace--case-fold))
(string-match-p regexp (projectile-replace--match-context m))))