Function: char-fold-search-forward

char-fold-search-forward is an interactive and byte-compiled function defined in char-fold.el.gz.

Signature

(char-fold-search-forward STRING &optional BOUND NOERROR COUNT)

Documentation

Search forward for a char-folded version of STRING.

STRING is converted to a regexp with char-fold-to-regexp, which is searched for with re-search-forward. BOUND NOERROR COUNT are passed to re-search-forward.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/char-fold.el.gz
;;; Commands provided for completeness.
(defun char-fold-search-forward (string &optional bound noerror count)
  "Search forward for a char-folded version of STRING.
STRING is converted to a regexp with `char-fold-to-regexp',
which is searched for with `re-search-forward'.
BOUND NOERROR COUNT are passed to `re-search-forward'."
  (interactive "sSearch: ")
  (re-search-forward (char-fold-to-regexp string) bound noerror count))