Function: thumbs-show-name
thumbs-show-name is an interactive and byte-compiled function defined
in thumbs.el.gz.
Signature
(thumbs-show-name)
Documentation
Show the name of the current file.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/thumbs.el.gz
(defun thumbs-show-name ()
"Show the name of the current file."
(interactive)
(let ((f (thumbs-current-image)))
(and f (message "%s [%s]" f (thumbs-file-size f)))))