diff options
| author | Glenn Morris | 2013-02-16 16:50:41 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-02-16 16:50:41 -0800 |
| commit | f05e2ff2e3d260d6480495886d9bdadd6c0d507f (patch) | |
| tree | f49bd11b296907a3b063bafd9535c6a6a35aef6b /lisp | |
| parent | e630f18a8c6674c18a4db0596d9a2b7431586bba (diff) | |
| download | emacs-f05e2ff2e3d260d6480495886d9bdadd6c0d507f.tar.gz emacs-f05e2ff2e3d260d6480495886d9bdadd6c0d507f.zip | |
* lisp/image-mode.el (image-mode-map): Add image-dired menu entry.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/image-mode.el | 10 |
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b27300e290c..b462d35c5e6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2013-02-17 Glenn Morris <rgm@gnu.org> | 1 | 2013-02-17 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * image-mode.el (image-mode-map): Add image-dired menu entry. | ||
| 4 | |||
| 3 | * image-dired.el (tumme): Make this alias obsolete. | 5 | * image-dired.el (tumme): Make this alias obsolete. |
| 4 | 6 | ||
| 5 | 2013-02-16 Glenn Morris <rgm@gnu.org> | 7 | 2013-02-16 Glenn Morris <rgm@gnu.org> |
diff --git a/lisp/image-mode.el b/lisp/image-mode.el index 52367811341..7787a26cc08 100644 --- a/lisp/image-mode.el +++ b/lisp/image-mode.el | |||
| @@ -376,9 +376,15 @@ call." | |||
| 376 | :visible (eq image-type 'imagemagick) | 376 | :visible (eq image-type 'imagemagick) |
| 377 | :help "Rotate the image"] | 377 | :help "Rotate the image"] |
| 378 | "--" | 378 | "--" |
| 379 | ["Next Image" image-next-file :active t | 379 | ["Show Thumbnails" |
| 380 | (lambda () | ||
| 381 | (interactive) | ||
| 382 | (image-dired default-directory)) | ||
| 383 | :active default-directory | ||
| 384 | :help "Show thumbnails for all images in this directory"] | ||
| 385 | ["Next Image" image-next-file :active buffer-file-name | ||
| 380 | :help "Move to next image in this directory"] | 386 | :help "Move to next image in this directory"] |
| 381 | ["Previous Image" image-previous-file :active t | 387 | ["Previous Image" image-previous-file :active buffer-file-name |
| 382 | :help "Move to previous image in this directory"] | 388 | :help "Move to previous image in this directory"] |
| 383 | "--" | 389 | "--" |
| 384 | ["Animate Image" image-toggle-animation :style toggle | 390 | ["Animate Image" image-toggle-animation :style toggle |