Function: log-edit-comment-search-forward

log-edit-comment-search-forward is an interactive and byte-compiled function defined in log-edit.el.gz.

Signature

(log-edit-comment-search-forward STR)

Documentation

Search forwards through VC commit comment history for a match of STR.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/log-edit.el.gz
(defun log-edit-comment-search-forward (str)
  "Search forwards through VC commit comment history for a match of STR."
  (interactive
   (list (read-string (format-prompt "Comment substring"
                                     log-edit-last-comment-match)
                      nil nil log-edit-last-comment-match)))
  (log-edit-comment-search-backward str -1))