Function: bookmark-bmenu-toggle-filenames

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

Signature

(bookmark-bmenu-toggle-filenames &optional SHOW)

Documentation

Toggle whether filenames are shown in the bookmark list.

Optional argument SHOW means show them unconditionally.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-bmenu-toggle-filenames (&optional show)
  "Toggle whether filenames are shown in the bookmark list.
Optional argument SHOW means show them unconditionally."
  (interactive nil bookmark-bmenu-mode)
  (cond
   (show
    (setq bookmark-bmenu-toggle-filenames t))
   (bookmark-bmenu-toggle-filenames
    (setq bookmark-bmenu-toggle-filenames nil))
   (t
    (setq bookmark-bmenu-toggle-filenames t)))
  (bookmark-bmenu-surreptitiously-rebuild-list))