Function: bookmark-bmenu-save
bookmark-bmenu-save is an interactive and byte-compiled function
defined in bookmark.el.gz.
Signature
(bookmark-bmenu-save)
Documentation
Save the current list into a bookmark file.
With a prefix arg, prompt for a file to save them in.
See also the related behaviors of bookmark-load and
bookmark-bmenu-load.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-bmenu-save ()
"Save the current list into a bookmark file.
With a prefix arg, prompt for a file to save them in.
See also the related behaviors of `bookmark-load' and
`bookmark-bmenu-load'."
(interactive nil bookmark-bmenu-mode)
(save-excursion
(save-window-excursion
(call-interactively 'bookmark-save)
(set-buffer-modified-p nil))))