diff options
author | Mathias Dahl <mathias.dahl@gmail.com> | 2006-05-25 12:21:41 +0000 |
---|---|---|
committer | Mathias Dahl <mathias.dahl@gmail.com> | 2006-05-25 12:21:41 +0000 |
commit | f5b5e4fee1947fe025ef60580677705fe3e66705 (patch) | |
tree | 1078454f06c7bb95644a5ae3711bb629da5d02f3 /lisp/tumme.el | |
parent | 776e9e349b9241ba7693b61adf59229a425ab058 (diff) | |
download | emacs-f5b5e4fee1947fe025ef60580677705fe3e66705.tar.gz |
* tumme.el (tumme-display-image): Changed documentation string
slightly.
(tumme-dired-display-image): Added call to `display-buffer'.
* dired.el (dired-mode-map): `tumme-display-dired-image' was
renamed in tumme.el, but there was still a key binding to it
here. Changed the binding to the new name.
Diffstat (limited to 'lisp/tumme.el')
-rw-r--r-- | lisp/tumme.el | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lisp/tumme.el b/lisp/tumme.el index 2e2afd75399..1fa1622cabd 100644 --- a/lisp/tumme.el +++ b/lisp/tumme.el @@ -1762,13 +1762,11 @@ Ask user how many thumbnails should be displayed per row." (defun tumme-display-image (file &optional original-size) "Display image FILE in image buffer. -Use this when you want to display the image, semi sized, in a window -next to the thumbnail window - typically a three-window configuration -with dired to the left, thumbnail window to the upper right and image -window to the lower right. The image is sized to fit the display -window (using a temporary file, don't worry). Because of this, it -will not be as quick as opening it directly, but on most modern -systems it should feel snappy enough. +Use this when you want to display the image, semi sized, in a new +window. The image is sized to fit the display window (using a +temporary file, don't worry). Because of this, it will not be as +quick as opening it directly, but on most modern systems it +should feel snappy enough. If optional argument ORIGINAL-SIZE is non-nil, display image in its original size." @@ -1822,7 +1820,8 @@ With prefix argument ARG, display image in its original size." See documentation for `tumme-display-image' for more information. With prefix argument ARG, display image in its original size." (interactive "P") - (tumme-display-image (dired-get-filename) arg)) + (tumme-display-image (dired-get-filename) arg) + (display-buffer tumme-display-image-buffer)) (defun tumme-image-at-point-p () "Return true if there is a tumme thumbnail at point." |