Function: bookmark-bmenu-relocate

bookmark-bmenu-relocate is an interactive and byte-compiled function defined in bookmark.el.gz.

Signature

(bookmark-bmenu-relocate)

Documentation

Change the absolute file name of the bookmark on the current line.

Prompt with completion for the new path.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-bmenu-relocate ()
  "Change the absolute file name of the bookmark on the current line.
Prompt with completion for the new path."
  (interactive nil bookmark-bmenu-mode)
  (let ((bmrk (bookmark-bmenu-bookmark))
        (thispoint (point)))
    (bookmark-relocate bmrk)
    (goto-char thispoint)))