Function: image-dired-delete-char
image-dired-delete-char is an interactive and byte-compiled function
defined in image-dired.el.gz.
Signature
(image-dired-delete-char)
Documentation
Remove current thumbnail from thumbnail buffer and line up.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-delete-char ()
"Remove current thumbnail from thumbnail buffer and line up."
(interactive)
(let ((inhibit-read-only t))
(delete-char 1)
(when (= (following-char) ?\s)
(delete-char 1))))