aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRüdiger Sonderfeld2014-01-09 14:34:36 +0100
committerRüdiger Sonderfeld2014-01-09 14:34:36 +0100
commita7fecaa0c5f8247c3b3747506201ec2a2ecbe292 (patch)
treef0601ae9a4affd5b15697c4bab2ae318c32fabac
parent4e7d26fc68ac3c7983824b60ee3e2b8d2d87568e (diff)
downloademacs-a7fecaa0c5f8247c3b3747506201ec2a2ecbe292.tar.gz
emacs-a7fecaa0c5f8247c3b3747506201ec2a2ecbe292.zip
Document Image Mode's new animation features.
* etc/NEWS: Better document the speed up, slow down, or reverse animation in Image Mode. * files.texi (File Conveniences): Document `image-next-frame', `image-previous-frame', `image-goto-frame', `image-increase-speed', `image-decrease-speed', `image-reverse-speed', and `image-reset-speed'.
-rw-r--r--doc/emacs/ChangeLog7
-rw-r--r--doc/emacs/files.texi26
-rw-r--r--etc/ChangeLog5
-rw-r--r--etc/NEWS6
4 files changed, 39 insertions, 5 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 8db5ab808ce..3b81e731640 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,10 @@
12014-01-09 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2
3 * files.texi (File Conveniences): Document `image-next-frame',
4 `image-previous-frame', `image-goto-frame',
5 `image-increase-speed', `image-decrease-speed',
6 `image-reverse-speed', and `image-reset-speed'.
7
12014-01-07 Bastien Guerry <bzg@gnu.org> 82014-01-07 Bastien Guerry <bzg@gnu.org>
2 9
3 * buffers.texi (Buffers): Fix display of @math content by using 10 * buffers.texi (Buffers): Fix display of @math content by using
diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi
index 78a820b4efc..449ad9f2aa1 100644
--- a/doc/emacs/files.texi
+++ b/doc/emacs/files.texi
@@ -1944,12 +1944,9 @@ point. Partial Completion mode offers other features extending
1944 1944
1945@findex image-mode 1945@findex image-mode
1946@findex image-toggle-display 1946@findex image-toggle-display
1947@findex image-toggle-animation
1948@findex image-next-file 1947@findex image-next-file
1949@findex image-previous-file 1948@findex image-previous-file
1950@cindex images, viewing 1949@cindex images, viewing
1951@cindex image animation
1952@cindex animated images
1953 Visiting image files automatically selects Image mode. In this 1950 Visiting image files automatically selects Image mode. In this
1954major mode, you can type @kbd{C-c C-c} (@code{image-toggle-display}) 1951major mode, you can type @kbd{C-c C-c} (@code{image-toggle-display})
1955to toggle between displaying the file as an image in the Emacs buffer, 1952to toggle between displaying the file as an image in the Emacs buffer,
@@ -1962,10 +1959,29 @@ displayed. You can press @kbd{n} (@code{image-next-file}) and @kbd{p}
1962(@code{image-previous-file}) to visit the next image file and the 1959(@code{image-previous-file}) to visit the next image file and the
1963previous image file in the same directory, respectively. 1960previous image file in the same directory, respectively.
1964 1961
1965If the image can be animated, the command @kbd{RET} 1962@findex image-toggle-animation
1963@findex image-next-frame
1964@findex image-previous-frame
1965@findex image-goto-frame
1966@findex image-increase-speed
1967@findex image-decrease-speed
1968@findex image-reset-speed
1969@findex image-reverse-speed
1970@vindex image-animate-loop
1971@cindex image animation
1972@cindex animated images
1973 If the image can be animated, the command @kbd{RET}
1966(@code{image-toggle-animation}) starts or stops the animation. 1974(@code{image-toggle-animation}) starts or stops the animation.
1967Animation plays once, unless the option @code{image-animate-loop} is 1975Animation plays once, unless the option @code{image-animate-loop} is
1968non-@code{nil}. 1976non-@code{nil}. With @kbd{f} (@code{image-next-frame}) and @kbd{b}
1977(@code{image-previous-frame}) you can step through the individual
1978frames. Both commands accept a numeric prefix to step through several
1979frames at once. You can go to a specific frame with @kbd{F}
1980(@code{image-goto-frame}). The speed of the animation can be
1981increased by pressing @kbd{a +} (@code{image-increase-speed}) and
1982decreased by pressing @kbd{a -} (@code{image-decrease-speed}). With
1983@kbd{a r} (@code{image-reverse-speed}) the speed is reversed. You can
1984reset the speed with @kbd{a 0} (@code{image-reset-speed}).
1969 1985
1970@cindex ImageMagick support 1986@cindex ImageMagick support
1971@vindex imagemagick-enabled-types 1987@vindex imagemagick-enabled-types
diff --git a/etc/ChangeLog b/etc/ChangeLog
index d952550832e..54603a72aaa 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,8 @@
12014-01-09 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2
3 * NEWS: Better document the speed up, slow down, or reverse
4 animation in Image Mode.
5
12014-01-05 Tassilo Horn <tsdh@gnu.org> 62014-01-05 Tassilo Horn <tsdh@gnu.org>
2 7
3 * themes/tsdh-light-theme.el (tsdh-light): Define org-level-* 8 * themes/tsdh-light-theme.el (tsdh-light): Define org-level-*
diff --git a/etc/NEWS b/etc/NEWS
index 9044481742c..4d5af74c75a 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -574,11 +574,17 @@ will revert to the old behavior.
574visit the next image file and the previous image file in the same 574visit the next image file and the previous image file in the same
575directory, respectively. 575directory, respectively.
576 576
577+++
577*** New commands to show specific frames of multi-frame images. 578*** New commands to show specific frames of multi-frame images.
578`f' (`image-next-frame') and `b' (`image-previous-frame') visit the 579`f' (`image-next-frame') and `b' (`image-previous-frame') visit the
579next or previous frame. `F' (`image-goto-frame') shows a specific frame. 580next or previous frame. `F' (`image-goto-frame') shows a specific frame.
580 581
582+++
581*** New commands to speed up, slow down, or reverse animation. 583*** New commands to speed up, slow down, or reverse animation.
584`a +' (`image-increase-speed') and `a -' (`image-decrease-speed') to
585speed up and slow down the animation. `a r' (`image-reverse-speed')
586to reverse it and `a 0' (`image-reset-speed') to reset it.
587
582--- 588---
583*** The command `image-mode-fit-frame' deletes other windows. 589*** The command `image-mode-fit-frame' deletes other windows.
584When toggling, it restores the frame's previous window configuration. 590When toggling, it restores the frame's previous window configuration.