Function: tempo-forward-mark

tempo-forward-mark is an interactive and byte-compiled function defined in tempo.el.gz.

Signature

(tempo-forward-mark)

Documentation

Jump to the next mark in tempo-marks.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/tempo.el.gz
;;;
;;; tempo-forward-mark

(defun tempo-forward-mark ()
  "Jump to the next mark in `tempo-marks'."
  (interactive)
  (let ((next-mark (catch 'found
		     (mapc
                      (lambda (mark)
                        (if (< (point) mark)
                            (throw 'found mark)))
		      tempo-marks)
		     ;; return nil if not found
		     nil)))
    (if next-mark
	(goto-char next-mark))))