Function: bookmark-exit-hook-internal

bookmark-exit-hook-internal is a byte-compiled function defined in bookmark.el.gz.

Signature

(bookmark-exit-hook-internal)

Documentation

Save bookmark state, if necessary, at Emacs exit time.

This also runs bookmark-exit-hook.

Source Code

;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-exit-hook-internal ()
  "Save bookmark state, if necessary, at Emacs exit time.
This also runs `bookmark-exit-hook'."
  (run-hooks 'bookmark-exit-hook)
  (and (bookmark-time-to-save-p t)
       (bookmark-save)))