Function: archive-chown-entry

archive-chown-entry is an interactive and byte-compiled function defined in arc-mode.el.gz.

Signature

(archive-chown-entry NEW-UID)

Documentation

Change the owner of all marked or this member.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/arc-mode.el.gz
(defun archive-chown-entry (new-uid)
  "Change the owner of all marked or this member."
  (interactive "nNew uid: " archive-mode)
  (if archive-read-only (error "Archive is read-only"))
  (let ((func (archive-name "chown-entry")))
    (if (fboundp func)
	(progn
	  (funcall func new-uid (archive-get-marked ?* t))
	  (archive-resummarize))
      (error "Setting owner is not supported for this archive type"))))