diff options
| -rw-r--r-- | doc/emacs/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/emacs/basic.texi | 8 |
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 @@ | |||
| 1 | 2008-08-23 Johan Bockgard <bojohan@muon> | ||
| 2 | |||
| 3 | * basic.texi (Moving Point): Fix <prior>/<next> confusion. | ||
| 4 | |||
| 1 | 2008-08-22 Chong Yidong <cyd@stupidchicken.com> | 5 | 2008-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. | |||
| 202 | Move to the end of the buffer (@code{end-of-buffer}). | 202 | Move 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} |
| 206 | Scroll the display one screen forward, and move point if necessary to | 206 | Scroll the display one screen forward, and move point if necessary to |
| 207 | put it on the screen (@code{scroll-up}). If your keyboard has a | 207 | put 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 |
| 209 | thing as as @key{C-v}. Scrolling commands are described further in | 209 | thing 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} |
| 214 | Scroll one screen backward, and move point if necessary to put it on | 214 | Scroll one screen backward, and move point if necessary to put it on |
| 215 | the screen (@code{scroll-down}). If your keyboard has a @key{PageUp} | 215 | the screen (@code{scroll-down}). If your keyboard has a @key{PageUp} |
| 216 | key (sometimes labelled @key{NEXT}), it does the same thing as | 216 | key (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 |
| 219 | Read a number @var{n} and move point to buffer position @var{n}. | 219 | Read a number @var{n} and move point to buffer position @var{n}. |