Function: wdired-revert
wdired-revert is a byte-compiled function defined in wdired.el.gz.
Signature
(wdired-revert &optional ARG NOCONFIRM)
Documentation
Discard changes in the buffer and update it based on changes on disk.
Optional arguments are ignored.
Source Code
;; Defined in /usr/src/emacs/lisp/wdired.el.gz
(defun wdired-revert (&optional _arg _noconfirm)
"Discard changes in the buffer and update it based on changes on disk.
Optional arguments are ignored."
(wdired-change-to-dired-mode)
(revert-buffer)
(wdired-change-to-wdired-mode))