Function: tpu-goto-breadcrumb
tpu-goto-breadcrumb is an interactive and byte-compiled function
defined in tpu-edt.el.gz.
Signature
(tpu-goto-breadcrumb NUM)
Documentation
Return to a breadcrumb set with drop-breadcrumb.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-goto-breadcrumb (num)
"Return to a breadcrumb set with drop-breadcrumb."
(interactive "p")
(cond ((get tpu-breadcrumb-plist num)
(switch-to-buffer (car (get tpu-breadcrumb-plist num)))
(goto-char (cadr (get tpu-breadcrumb-plist num)))
(message "mark %d found." num))
(t
(message "mark %d not found." num))))