Function: image-dired-display-current-image-full

image-dired-display-current-image-full is an interactive and byte-compiled function defined in image-dired.el.gz.

This command is obsolete since 29.1; use image-transform-reset-to-original instead.

Signature

(image-dired-display-current-image-full)

Documentation

Display current image in full size.

Probably introduced at or before Emacs version 29.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
(defun image-dired-display-current-image-full ()
  "Display current image in full size."
  (declare (obsolete image-transform-reset-to-original "29.1"))
  (interactive nil image-dired-thumbnail-mode)
  (let ((file (image-dired-original-file-name)))
    (if file
        (progn
          (image-dired-display-image file)
          (with-current-buffer image-dired-display-image-buffer
            (image-transform-reset-to-original)))
      (error "No original file name at point"))))