Function: ff-string-match
ff-string-match is a byte-compiled function defined in
find-file.el.gz.
Signature
(ff-string-match REGEXP STRING &optional START)
Documentation
Like string-match, but set case-fold-search temporarily.
The value used comes from ff-case-fold-search.
Source Code
;; Defined in /usr/src/emacs/lisp/find-file.el.gz
(defun ff-string-match (regexp string &optional start)
"Like `string-match', but set `case-fold-search' temporarily.
The value used comes from `ff-case-fold-search'."
(if regexp
(let ((case-fold-search ff-case-fold-search))
(string-match regexp string start))))