]> git.eshelyaron.com Git - emacs.git/commitdiff
(Moving Point): Fix <prior>/<next> confusion.
authorJohan Bockgård <bojohan@gnu.org>
Sat, 23 Aug 2008 09:11:52 +0000 (09:11 +0000)
committerJohan Bockgård <bojohan@gnu.org>
Sat, 23 Aug 2008 09:11:52 +0000 (09:11 +0000)
doc/emacs/ChangeLog
doc/emacs/basic.texi

index c8fb80da0e2abdbc32d906de6b47bf4211ff845c..8bcd983f8dcf087f35984b718d6b12a1f60e4328 100644 (file)
@@ -1,3 +1,7 @@
+2008-08-23  Johan Bockgard  <bojohan@muon>
+
+       * basic.texi (Moving Point): Fix <prior>/<next> confusion.
+
 2008-08-22  Chong Yidong  <cyd@stupidchicken.com>
 
        * mini.texi (Minibuffer): Simplify introduction.
index b59831115717a63b7fde9901cc217db31773287b..c61b0e7d2a09807e17eb0f04bc26137f70620127 100644 (file)
@@ -202,18 +202,18 @@ numeric argument @var{n}, move to @var{n}/10 of the way from the top.
 Move to the end of the buffer (@code{end-of-buffer}).
 @item C-v
 @itemx @key{PageDown}
-@itemx @key{PRIOR}
+@itemx @key{next}
 Scroll the display one screen forward, and move point if necessary to
 put it on the screen (@code{scroll-up}).  If your keyboard has a
-@key{PageDown} key (sometimes labelled @key{PRIOR}), it does the same
+@key{PageDown} key (sometimes labelled @key{next}), it does the same
 thing as as @key{C-v}.  Scrolling commands are described further in
 @ref{Scrolling}.
 @item M-v
 @itemx @key{PageUp}
-@itemx @key{NEXT}
+@itemx @key{prior}
 Scroll one screen backward, and move point if necessary to put it on
 the screen (@code{scroll-down}).  If your keyboard has a @key{PageUp}
-key (sometimes labelled @key{NEXT}), it does the same thing as
+key (sometimes labelled @key{prior}), it does the same thing as
 @key{M-v}.
 @item M-x goto-char
 Read a number @var{n} and move point to buffer position @var{n}.