aboutsummaryrefslogtreecommitdiffstats
path: root/etc/TUTORIAL
diff options
context:
space:
mode:
authorEli Zaretskii2000-10-11 18:37:52 +0000
committerEli Zaretskii2000-10-11 18:37:52 +0000
commitdcb14dc0a678600a05a709119180463beac28722 (patch)
treea7ffb94b8f148c93de071657bc5747f2e9d882b7 /etc/TUTORIAL
parentc7fa86d5b3d6f8d7ff027ce109f69db4777e02d8 (diff)
downloademacs-dcb14dc0a678600a05a709119180463beac28722.tar.gz
emacs-dcb14dc0a678600a05a709119180463beac28722.zip
Minor wording changes, suggested by Per Starback <starback@ling.uu.se>.
Diffstat (limited to 'etc/TUTORIAL')
-rw-r--r--etc/TUTORIAL11
1 files changed, 7 insertions, 4 deletions
diff --git a/etc/TUTORIAL b/etc/TUTORIAL
index 000a462cf0b..6f99eb7c2b3 100644
--- a/etc/TUTORIAL
+++ b/etc/TUTORIAL
@@ -358,8 +358,8 @@ and M-e, sort of, in that lines are opposite sentences.
358 358
359You can also kill any part of the buffer with one uniform method. 359You can also kill any part of the buffer with one uniform method.
360Move to one end of that part, and type C-@ or C-SPC (either one). 360Move to one end of that part, and type C-@ or C-SPC (either one).
361Move to the other end of that part, and type C-w. That kills 361(SPC is the Space bar.) Move to the other end of that part, and type
362all the text between the two positions. 362C-w. That kills all the text between the two positions.
363 363
364>> Move the cursor to the Y at the start of the previous paragraph. 364>> Move the cursor to the Y at the start of the previous paragraph.
365>> Type C-SPC. Emacs should display a message "Mark set" 365>> Type C-SPC. Emacs should display a message "Mark set"
@@ -641,7 +641,9 @@ example is the command replace-string, which globally replaces one
641string with another. When you type M-x, Emacs prompts you at the 641string with another. When you type M-x, Emacs prompts you at the
642bottom of the screen with M-x and you should type the name of the 642bottom of the screen with M-x and you should type the name of the
643command; in this case, "replace-string". Just type "repl s<TAB>" and 643command; in this case, "replace-string". Just type "repl s<TAB>" and
644Emacs will complete the name. End the command name with <Return>. 644Emacs will complete the name. (<TAB> is the Tab key, usually found
645above the lCapsLock or Shift key near the left edge of the keyboard.)
646End the command name with <Return>.
645 647
646The replace-string command requires two arguments--the string to be 648The replace-string command requires two arguments--the string to be
647replaced, and the string to replace it with. You must end each 649replaced, and the string to replace it with. You must end each
@@ -850,7 +852,8 @@ the search is reversed.
850One of the nice features of Emacs is that you can display more than one 852One of the nice features of Emacs is that you can display more than one
851window on the screen at the same time. 853window on the screen at the same time.
852 854
853>> Move the cursor to this line and type C-u 0 C-l. 855>> Move the cursor to this line and type C-u 0 C-l (that's control-L, not
856 control-1).
854 857
855>> Now type C-x 2 which splits the screen into two windows. 858>> Now type C-x 2 which splits the screen into two windows.
856 Both windows display this tutorial. The cursor stays in the top window. 859 Both windows display this tutorial. The cursor stays in the top window.