Function: bookmark-bmenu-unmark

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

Signature

(bookmark-bmenu-unmark &optional BACKUP)

Documentation

Cancel all requested operations on bookmark on this line and move down.

Optional BACKUP means move up.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-bmenu-unmark (&optional backup)
  "Cancel all requested operations on bookmark on this line and move down.
Optional BACKUP means move up."
  (interactive "P" bookmark-bmenu-mode)
  ;; any flags to reset according to circumstances?  How about a
  ;; flag indicating whether this bookmark is being visited?
  ;; well, we don't have this now, so maybe later.
  (bookmark-bmenu-ensure-position)
  (tabulated-list-put-tag " ")
  (forward-line (if backup -1 1)))