aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Bockgård2008-08-23 09:11:52 +0000
committerJohan Bockgård2008-08-23 09:11:52 +0000
commite2a71e28bf04faba7fae033ae4bbd92c0a94b087 (patch)
tree7c96e46a1650ec50bf210069adf08020253b4155
parentb1a345eeaa048df9ba9a0a72f808f986875f15ec (diff)
downloademacs-e2a71e28bf04faba7fae033ae4bbd92c0a94b087.tar.gz
emacs-e2a71e28bf04faba7fae033ae4bbd92c0a94b087.zip
(Moving Point): Fix <prior>/<next> confusion.
-rw-r--r--doc/emacs/ChangeLog4
-rw-r--r--doc/emacs/basic.texi8
2 files changed, 8 insertions, 4 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index c8fb80da0e2..8bcd983f8dc 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,7 @@
12008-08-23 Johan Bockgard <bojohan@muon>
2
3 * basic.texi (Moving Point): Fix <prior>/<next> confusion.
4
12008-08-22 Chong Yidong <cyd@stupidchicken.com> 52008-08-22 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * mini.texi (Minibuffer): Simplify introduction. 7 * mini.texi (Minibuffer): Simplify introduction.
diff --git a/doc/emacs/basic.texi b/doc/emacs/basic.texi
index b5983111571..c61b0e7d2a0 100644
--- a/doc/emacs/basic.texi
+++ b/doc/emacs/basic.texi
@@ -202,18 +202,18 @@ numeric argument @var{n}, move to @var{n}/10 of the way from the top.
202Move to the end of the buffer (@code{end-of-buffer}). 202Move to the end of the buffer (@code{end-of-buffer}).
203@item C-v 203@item C-v
204@itemx @key{PageDown} 204@itemx @key{PageDown}
205@itemx @key{PRIOR} 205@itemx @key{next}
206Scroll the display one screen forward, and move point if necessary to 206Scroll the display one screen forward, and move point if necessary to
207put it on the screen (@code{scroll-up}). If your keyboard has a 207put it on the screen (@code{scroll-up}). If your keyboard has a
208@key{PageDown} key (sometimes labelled @key{PRIOR}), it does the same 208@key{PageDown} key (sometimes labelled @key{next}), it does the same
209thing as as @key{C-v}. Scrolling commands are described further in 209thing as as @key{C-v}. Scrolling commands are described further in
210@ref{Scrolling}. 210@ref{Scrolling}.
211@item M-v 211@item M-v
212@itemx @key{PageUp} 212@itemx @key{PageUp}
213@itemx @key{NEXT} 213@itemx @key{prior}
214Scroll one screen backward, and move point if necessary to put it on 214Scroll one screen backward, and move point if necessary to put it on
215the screen (@code{scroll-down}). If your keyboard has a @key{PageUp} 215the screen (@code{scroll-down}). If your keyboard has a @key{PageUp}
216key (sometimes labelled @key{NEXT}), it does the same thing as 216key (sometimes labelled @key{prior}), it does the same thing as
217@key{M-v}. 217@key{M-v}.
218@item M-x goto-char 218@item M-x goto-char
219Read a number @var{n} and move point to buffer position @var{n}. 219Read a number @var{n} and move point to buffer position @var{n}.