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.
Signature
(image-dired-display-current-image-full)
Documentation
Display current image in full size.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-display-current-image-full ()
"Display current image in full size."
(interactive)
(let ((file (image-dired-original-file-name)))
(if file
(progn
(image-dired-display-image file t)
(message "Full size image displayed"))
(error "No original file name at point"))))