aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXue Fuqiao2013-12-22 13:20:03 +0800
committerXue Fuqiao2013-12-22 13:20:03 +0800
commit8d3c54a0b225a159002c92bd13ebe1086857dac2 (patch)
treeab66159b8520eb3c8cbb90c9fe8e6f54e7f6f1af
parent6cddebc11bdf10eabf55cac829d06bdec7afab89 (diff)
downloademacs-8d3c54a0b225a159002c92bd13ebe1086857dac2.tar.gz
emacs-8d3c54a0b225a159002c92bd13ebe1086857dac2.zip
Document image-{next, previous}-file, plus some minor tweak.
-rw-r--r--doc/emacs/ChangeLog2
-rw-r--r--doc/emacs/files.texi8
-rw-r--r--etc/NEWS11
3 files changed, 19 insertions, 2 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index de8dea74501..64b77d9c1da 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,5 +1,7 @@
12013-12-22 Xue Fuqiao <xfq.free@gmail.com> 12013-12-22 Xue Fuqiao <xfq.free@gmail.com>
2 2
3 * files.texi (File Conveniences): Document `image-next-file' and `image-previous-file'.
4
3 * display.texi (Optional Mode Line): Fix an index. 5 * display.texi (Optional Mode Line): Fix an index.
4 6
5 * regs.texi (File Registers): Document `kmacro-to-register'. 7 * regs.texi (File Registers): Document `kmacro-to-register'.
diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi
index 4117248cbe4..c28a30bf823 100644
--- a/doc/emacs/files.texi
+++ b/doc/emacs/files.texi
@@ -1944,6 +1944,8 @@ point. Partial Completion mode offers other features extending
1944@findex image-mode 1944@findex image-mode
1945@findex image-toggle-display 1945@findex image-toggle-display
1946@findex image-toggle-animation 1946@findex image-toggle-animation
1947@findex image-next-file
1948@findex image-previous-file
1947@cindex images, viewing 1949@cindex images, viewing
1948@cindex image animation 1950@cindex image animation
1949@cindex animated images 1951@cindex animated images
@@ -1955,7 +1957,11 @@ Displaying the file as an image works only if Emacs is compiled with
1955support for displaying such images. If the displayed image is wider 1957support for displaying such images. If the displayed image is wider
1956or taller than the frame, the usual point motion keys (@kbd{C-f}, 1958or taller than the frame, the usual point motion keys (@kbd{C-f},
1957@kbd{C-p}, and so forth) cause different parts of the image to be 1959@kbd{C-p}, and so forth) cause different parts of the image to be
1958displayed. If the image can be animated, the command @kbd{RET} 1960displayed. You can press @kbd{n} (@code{image-next-file}) and @kbd{p}
1961(@code{image-previous-file}) to visit the next image file and the
1962previous image file in the same directory, respectively.
1963
1964If the image can be animated, the command @kbd{RET}
1959(@code{image-toggle-animation}) starts or stops the animation. 1965(@code{image-toggle-animation}) starts or stops the animation.
1960Animation plays once, unless the option @code{image-animate-loop} is 1966Animation plays once, unless the option @code{image-animate-loop} is
1961non-@code{nil}. 1967non-@code{nil}.
diff --git a/etc/NEWS b/etc/NEWS
index 42a81429778..c73c2cc1946 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -321,6 +321,7 @@ code run via JIT Lock.
321 321
322** Calendar and Diary 322** Calendar and Diary
323 323
324---
324*** New faces `calendar-weekday-header', `calendar-weekend-header', 325*** New faces `calendar-weekday-header', `calendar-weekend-header',
325and `calendar-month-header'. 326and `calendar-month-header'.
326 327
@@ -377,7 +378,7 @@ For example, this enables parsing of macros which open new namespaces.
377 378
378** cl-lib 379** cl-lib
379 380
380*** New macro cl-tagbody. 381*** New macro `cl-tagbody'.
381 382
382+++ 383+++
383*** letf is now just an alias for cl-letf. 384*** letf is now just an alias for cl-letf.
@@ -464,20 +465,28 @@ module.
464*** New option `f90-smart-end-names'. 465*** New option `f90-smart-end-names'.
465 466
466** Icomplete is a bit more like Ido. 467** Icomplete is a bit more like Ido.
468
467*** key bindings to navigate through and select the completions. 469*** key bindings to navigate through and select the completions.
470
468*** The icomplete-separator is customizable, and its default has changed. 471*** The icomplete-separator is customizable, and its default has changed.
472
469*** Removed icomplete-show-key-bindings. 473*** Removed icomplete-show-key-bindings.
474
470*** Icomplete-mode by defaults applies to all forms of minibuffer completion. 475*** Icomplete-mode by defaults applies to all forms of minibuffer completion.
471(setq icomplete-with-completion-tables '(internal-complete-buffer)) 476(setq icomplete-with-completion-tables '(internal-complete-buffer))
472will revert to the old behavior. 477will revert to the old behavior.
473 478
474** Ido 479** Ido
480
475*** Ido has a manual now. 481*** Ido has a manual now.
482
476*** `ido-use-virtual-buffers' takes a new value 'auto. 483*** `ido-use-virtual-buffers' takes a new value 'auto.
484
477*** `ido-decorations' has been slightly extended to give a bit more control. 485*** `ido-decorations' has been slightly extended to give a bit more control.
478 486
479** Image mode 487** Image mode
480 488
489+++
481*** New commands `n' (`image-next-file') and `p' (`image-previous-file') 490*** New commands `n' (`image-next-file') and `p' (`image-previous-file')
482visit the next image file and the previous image file in the same 491visit the next image file and the previous image file in the same
483directory, respectively. 492directory, respectively.