Function: image-dired-restore-window-configuration

image-dired-restore-window-configuration is an interactive and byte-compiled function defined in image-dired.el.gz.

Signature

(image-dired-restore-window-configuration)

Documentation

Restore window configuration.

Restore any changes to the window configuration made by calling image-dired-dired-with-window-configuration.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-restore-window-configuration ()
  "Restore window configuration.
Restore any changes to the window configuration made by calling
`image-dired-dired-with-window-configuration'."
  (interactive)
  (if image-dired-saved-window-configuration
      (set-window-configuration image-dired-saved-window-configuration)
    (message "No saved window configuration")))