Function: bookmark-jump-other-frame

bookmark-jump-other-frame is an autoloaded, interactive and byte-compiled function defined in bookmark.el.gz.

Signature

(bookmark-jump-other-frame BOOKMARK)

Documentation

Jump to BOOKMARK in another frame. See bookmark-jump for more.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
;;;###autoload
(defun bookmark-jump-other-frame (bookmark)
  "Jump to BOOKMARK in another frame.  See `bookmark-jump' for more."
  (interactive
   (list (bookmark-completing-read "Jump to bookmark (in another frame)"
                                   bookmark-current-bookmark)))
  (let ((pop-up-frames t))
    (bookmark-jump-other-window bookmark)))