Function: package-menu-mark-unmark
package-menu-mark-unmark is an interactive and byte-compiled function
defined in package.el.gz.
Signature
(package-menu-mark-unmark &optional NUM)
Documentation
Clear any marks on the current package and move to the next line.
The current package is the package at point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/package.el.gz
(defun package-menu-mark-unmark (&optional _num)
"Clear any marks on the current package and move to the next line.
The current package is the package at point."
(interactive "p" package-menu-mode)
(package--ensure-package-menu-mode)
(package-menu--remove-overlay)
(tabulated-list-put-tag " " t))