comparison etc/TUTORIAL @ 34886:e8d926df8cc4

Fix a typo reported by "Andrew Hintz (Drew)" <adhintz@mail.utexas.edu>.
author Eli Zaretskii <eliz@gnu.org>
date Wed, 27 Dec 2000 21:11:01 +0000
parents e4721c5ab8dd
children a64b182fd5e5
comparison
equal deleted inserted replaced
34885:766c951092cc 34886:e8d926df8cc4
82 >> Do a few C-n's to bring the cursor down to this line. 82 >> Do a few C-n's to bring the cursor down to this line.
83 83
84 >> Move into the line with C-f's and then up with C-p's. 84 >> Move into the line with C-f's and then up with C-p's.
85 See what C-p does when the cursor is in the middle of the line. 85 See what C-p does when the cursor is in the middle of the line.
86 86
87 Each of text line ends with a Newline character, which serves to 87 Each text line ends with a Newline character, which serves to separate
88 separate it from the following line. The last line in your file ought 88 it from the following line. The last line in your file ought to have
89 to have a Newline at the end (but Emacs does not require it to have 89 a Newline at the end (but Emacs does not require it to have one).
90 one).
91 90
92 >> Try to C-b at the beginning of a line. It should move to 91 >> Try to C-b at the beginning of a line. It should move to
93 the end of the previous line. This is because it moves back 92 the end of the previous line. This is because it moves back
94 across the Newline character. 93 across the Newline character.
95 94