Function: archive-undo

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

Signature

(archive-undo)

Documentation

Undo in an archive buffer.

This doesn't recover lost files, it just undoes changes in the buffer itself.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/arc-mode.el.gz
(defun archive-undo ()
  "Undo in an archive buffer.
This doesn't recover lost files, it just undoes changes in the buffer itself."
  (interactive)
  (let ((inhibit-read-only t))
    (undo)))