Function: hif-full-match

hif-full-match is a byte-compiled function defined in hideif.el.gz.

Signature

(hif-full-match REGEXP STRING)

Documentation

A full REGEXP match of STRING instead of partially match.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/hideif.el.gz
;; matching and conversion

(defun hif-full-match (regexp string)
  "A full REGEXP match of STRING instead of partially match."
  (string-match (concat "\\`" regexp "\\'") string))