Function: edt-find-next-backward

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

Signature

(edt-find-next-backward)

Documentation

Find next occurrence of a string in backward direction.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-find-next-backward ()
  "Find next occurrence of a string in backward direction."
  (interactive)
  (edt-with-position
   (if (not (search-backward edt-find-last-text nil t))
       (error "Search failed: \"%s\"" edt-find-last-text)
     (edt-set-match)
     (and (< (point) top) (recenter (min beg top-margin))))))