Function: edt-find-backward

edt-find-backward is an interactive and byte-compiled function defined in edt.el.gz.

Signature

(edt-find-backward &optional FIND)

Documentation

Find first occurrence of a string in the backward direction and save it.

Optional argument FIND is t if this function is called from edt-find.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-find-backward (&optional find)
  "Find first occurrence of a string in the backward direction and save it.
Optional argument FIND is t if this function is called from `edt-find'."
  (interactive)
  (or find
      (setq edt-find-last-text (read-string "Search backward: ")))
  (edt-with-position
   (if (search-backward edt-find-last-text)
       (edt-set-match))
   (and (< (point) top) (recenter (min beg top-margin)))))