summaryrefslogtreecommitdiff
path: root/etc/tutorials
diff options
context:
space:
mode:
Diffstat (limited to 'etc/tutorials')
-rw-r--r--etc/tutorials/TUTORIAL59
-rw-r--r--etc/tutorials/TUTORIAL.es63
-rw-r--r--etc/tutorials/TUTORIAL.fr51
-rw-r--r--etc/tutorials/TUTORIAL.he2
-rw-r--r--etc/tutorials/TUTORIAL.ru2
-rw-r--r--etc/tutorials/TUTORIAL.sv24
6 files changed, 96 insertions, 105 deletions
diff --git a/etc/tutorials/TUTORIAL b/etc/tutorials/TUTORIAL
index ccd438ad629..b74d1421ee6 100644
--- a/etc/tutorials/TUTORIAL
+++ b/etc/tutorials/TUTORIAL
@@ -16,7 +16,7 @@ The characters ">>" at the left margin indicate directions for you to
try using a command. For instance:
<<Blank lines inserted around following line by help-with-tutorial>>
[Middle of page left blank for didactic purposes. Text continues below]
->> Now type C-v (View next screen) to move to the next screen.
+>> Now type C-v (View next screen) to move to the next screen.
(go ahead, do it by holding down the CONTROL key while typing v).
From now on, you should do this again whenever you finish
reading the screen.
@@ -30,7 +30,7 @@ to place in the text. You already know how to move forward one screen,
with C-v. To move backwards one screen, type M-v (hold down the META key
and type v, or type <ESC>v if you do not have a META, EDIT, or ALT key).
->> Try typing M-v and then C-v, a few times.
+>> Try typing M-v and then C-v, a few times.
* SUMMARY
@@ -209,12 +209,12 @@ prefix argument, regardless of its value, makes the command do
something different.
C-v and M-v are another kind of exception. When given an argument,
-they scroll the screen up or down by that many lines, rather than by a
-screenful. For example, C-u 8 C-v scrolls the screen by 8 lines.
+they scroll the text up or down by that many lines, rather than by a
+screenful. For example, C-u 8 C-v scrolls by 8 lines.
>> Try typing C-u 8 C-v now.
-This should have scrolled the screen up by 8 lines. If you would like
+This should have scrolled the text up by 8 lines. If you would like
to scroll it down again, you can give an argument to M-v.
If you are using a graphical display, such as X or MS-Windows, there
@@ -281,8 +281,6 @@ other windows.
>> Type C-x 1 and see the documentation listing window disappear.
-This command is unlike the other commands you have learned in that it
-consists of two characters. It starts with the character CONTROL-x.
There is a whole series of commands that start with CONTROL-x; many of
them have to do with windows, files, buffers, and related things.
These commands are two, three or four characters long.
@@ -337,7 +335,7 @@ Remember that most Emacs commands can be given a repeat count;
this includes text characters. Repeating a text character inserts
it several times.
->> Try that now -- type C-u 8 * to insert ********.
+>> Try that now -- type C-u 8 * to insert ********.
You've now learned the most basic way of typing something in
Emacs and correcting errors. You can delete by words or lines
@@ -522,11 +520,8 @@ command
This copies the text within Emacs into the file. The first time you
do this, Emacs renames the original file to a new name so that it is
not lost. The new name is made by adding "~" to the end of the
-original file's name.
-
-When saving is finished, Emacs displays the name of the file written.
-You should save fairly often, so that you will not lose very much
-work if the system should crash (see the section "Auto Save" below).
+original file's name. When saving is finished, Emacs displays the
+name of the file written.
>> Type C-x C-s TUTORIAL <Return>.
This should save this tutorial to a file named TUTORIAL, and show
@@ -534,11 +529,11 @@ work if the system should crash (see the section "Auto Save" below).
You can find an existing file, to view it or edit it. You can also
find a file which does not already exist. This is the way to create a
-file with Emacs: find the file, which will start out empty, and then
-begin inserting the text for the file. When you ask to "save" the
-file, Emacs will really create the file with the text that you have
-inserted. From then on, you can consider yourself to be editing an
-already existing file.
+file with Emacs: find the file, which starts out empty, and then begin
+inserting the text for the file. When you ask to "save" the file,
+Emacs actually creates the file with the text that you have inserted.
+From then on, you can consider yourself to be editing an already
+existing file.
* BUFFERS
@@ -595,8 +590,8 @@ this does not save the first file. Its changes remain inside Emacs,
in that file's buffer. The creation or editing of the second file's
buffer has no effect on the first file's buffer. This is very useful,
but it also means that you need a convenient way to save the first
-file's buffer. It would be a nuisance to have to switch back to
-it with C-x C-f in order to save it with C-x C-s. So we have
+file's buffer. Having to switch back to that buffer, in order to save
+it with C-x C-s, would be a nuisance. So we have
C-x s Save some buffers
@@ -631,7 +626,7 @@ If you are using a graphical display, you don't need any special
command to move from Emacs to another application. You can do this
with the mouse or with window manager commands. However, if you're
using a text terminal which can only show one application at a time,
-you need to "suspend" Emacs to move to any other program.
+you need to "suspend" Emacs to move to any other application.
C-z is the command to exit Emacs *temporarily*--so that you can go
back to the same Emacs session afterward. When Emacs is running on a
@@ -640,8 +635,8 @@ but does not destroy the Emacs job. In the most common shells, you
can resume Emacs with the `fg' command or with `%emacs'.
The time to use C-x C-c is when you are about to log out. It's also
-the right thing to use to exit an Emacs invoked under mail handling
-programs and other miscellaneous utilities.
+the right thing to use to exit an Emacs invoked for a quick edit, such
+as by a mail handling utility.
There are many C-x commands. Here is a list of the ones you have learned:
@@ -656,8 +651,8 @@ There are many C-x commands. Here is a list of the ones you have learned:
Named eXtended commands are commands which are used even less
frequently, or commands which are used only in certain modes. An
-example is the command replace-string, which globally replaces one
-string with another. When you type M-x, Emacs prompts you at the
+example is the command replace-string, which replaces one string with
+another in the buffer. When you type M-x, Emacs prompts you at the
bottom of the screen with M-x and you should type the name of the
command; in this case, "replace-string". Just type "repl s<TAB>" and
Emacs will complete the name. (<TAB> is the Tab key, usually found
@@ -671,9 +666,9 @@ argument with <Return>.
>> Move the cursor to the blank line two lines below this one.
Then type M-x repl s<Return>changed<Return>altered<Return>.
- Notice how this line has changed: you've replaced
- the word c-h-a-n-g-e-d with "altered" wherever it occurred,
- after the initial position of the cursor.
+ Notice how this line has changed: you've replaced the word
+ "changed" with "altered" wherever it occurred, after the
+ initial position of the cursor.
* AUTO SAVE
@@ -762,6 +757,7 @@ differently.
To view documentation on your current major mode, type C-h m.
+>> Move the cursor to the line following this line.
>> Type C-l C-l to bring this line to the top of screen.
>> Type C-h m, to see how Text mode differs from Fundamental mode.
>> Type C-x 1 to remove the documentation from the screen.
@@ -893,7 +889,8 @@ display, those cursors are drawn as unblinking hollow boxes.
The command C-M-v is very useful when you are editing text in one
window and using the other window just for reference. Without leaving
-the selected window, you can scroll the other window with C-M-v.
+the selected window, you can scroll the text in the other window with
+C-M-v.
C-M-v is an example of a CONTROL-META character. If you have a META
(or Alt) key, you can type C-M-v by holding down both CONTROL and META
@@ -1041,8 +1038,8 @@ You need to type in the name of the variable when Emacs prompts for it.
>> Type C-h a file <Return>.
This displays in another window a list of all M-x commands with "file"
-in their names. You will see character-commands like C-x C-f listed
-beside the corresponding command names such as find-file.
+in their names. You will see character-commands listed beside the
+corresponding command names (such as C-x C-f beside find-file).
>> Type C-M-v to scroll the help window. Do this a few times.
diff --git a/etc/tutorials/TUTORIAL.es b/etc/tutorials/TUTORIAL.es
index fe8c223551a..b48f0aa79fb 100644
--- a/etc/tutorials/TUTORIAL.es
+++ b/etc/tutorials/TUTORIAL.es
@@ -222,13 +222,13 @@ bandera: la presencia de un argumento prefijo, sin tener en cuenta su
valor, hace que el comando acte de forma diferente.
C-v y M-v son otro tipo de excepcin. Cuando se les da un argumento,
-desplazan la pantalla arriba o abajo esa cantidad de lneas, en vez de
+desplazan el texto arriba o abajo esa cantidad de lneas, en vez de
una pantalla completa. Por ejemplo, C-u 8 C-v desplaza la pantalla 8
lneas.
>> Pruebe tecleando C-u 8 C-v ahora.
-Esto debi haber desplazado la pantalla hacia arriba 8 lneas. Si
+Esto debera haber desplazado el texto hacia arriba 8 lneas. Si
quisiera desplazarla hacia abajo de nuevo, puede dar un argumento a
M-v.
@@ -299,9 +299,7 @@ dems ventanas.
>> Escriba C-x 1 y vea que la ventana de listado de documentacin
desaparece.
-Este comando es diferente a los otros que ha aprendido en que ste
-consiste de dos caracteres. Comienza con el carcter CONTROL-x. Hay
-toda una serie de comandos que comienzan con CONTROL-x; muchos de
+Hay toda una serie de comandos que comienzan con CONTROL-x; muchos de
ellos tienen que ver con ventanas, archivos, buffers y cosas
relacionadas. Estos comandos son de una longitud de dos, tres o
cuatro caracteres.
@@ -554,12 +552,8 @@ comando
Esto copia el texto dentro de Emacs al archivo. La primera vez que
haga esto, Emacs renombrar el archivo original con un nuevo nombre
para que ste no se pierda. El nuevo nombre se hace agregando "~" al
-final del nombre del archivo original.
-
-Cuando guardar haya terminado, Emacs mostrar el nombre del archivo
-escrito. Deber guardar frecuentemente, para que no pierda mucho
-trabajo si el sistema falla (vea la seccin "AUTO GUARDADO", ms
-adelante).
+final del nombre del archivo original. Cuando guardar haya terminado,
+Emacs mostrar el nombre del archivo escrito.
>> Teclee C-x C-s TUTORIAL.es <Return>
Esto guardar el tutorial en un archivo llamado TUTORIAL.es, y
@@ -567,10 +561,10 @@ adelante).
Puede encontrar un archivo existente, para verlo o editarlo. Tambin
puede hacerlo con un archivo que no exista. sta es la forma de crear
-un archivo en Emacs: encuentre el archivo, que comenzar vaco, luego
-comience a insertar el texto para ese archivo. Cuando invoque
+un archivo en Emacs: encuentre el archivo, que est inicialmente vaco,
+luego comience a insertar el texto para ese archivo. Cuando invoque
"guardar" el archivo, Emacs crear realmente el archivo con el texto
-que ha insertado. De ah en adelante, puede considerarse estar
+que ha insertado. De ah en adelante, puede considerar que est
editando un archivo existente.
@@ -631,8 +625,8 @@ archivo, esto no guarda el primer archivo. Sus cambios permanecern
dentro de Emacs en ese buffer del archivo. La creacin o edicin del
segundo buffer de archivo no afecta al primero. Esto es muy til,
pero tambin significa que necesita una forma conveniente para guardar
-el archivo del primer buffer. Sera una molestia tener que volver a
-ste con C-x C-f para guardarlo con C-x C-s. As tenemos
+el archivo del primer buffer. Tener que volver a l para guardarlo
+con C-x C-s sera una molestia. Por tanto, tenemos
C-x s Guardar algunos buffers
@@ -667,7 +661,7 @@ Si est utilizando una pantalla grfica, no necesita ningn comando
especial para cambiar de Emacs a otra aplicacin. Puede hacerlo con
el ratn, o mediante el gestor de ventanas. Sin embargo, si est
usando una terminal que solo puede mostrar una aplicacin a la vez,
-tendr que "suspender" Emacs para poder acceder a otros programas.
+tendr que "suspender" Emacs para poder acceder a otras aplicaciones.
C-z es el comando para salir de Emacs *temporalmente*: para que pueda
regresar a la misma sesin de Emacs despus. Cuando Emacs est
@@ -677,8 +671,9 @@ intrpretes de comandos ms comunes, puede reanudar Emacs con el
comando `fg' o con `%emacs'.
El momento para usar C-x C-c es cuando est listo para salir del
-sistema. Es adems el paso correcto para salir de un Emacs llamado
-bajo programas de gestin de correo y otras utilidades diversas.
+sistema. Es adems el paso correcto para salir de un Emacs invocado
+para editar algo rpidamente, como por ejemplo desde un programa de
+gestin de correo.
Existen muchos comandos C-x. He aqu la lista de los que ya ha
aprendido:
@@ -694,14 +689,14 @@ aprendido:
Los comandos eXtendidos por nombre son comandos que se utilizan an
con menos frecuencia, o nicamente en ciertos modos. Un ejemplo es el
-comando replace-string, el cual substituye globalmente una cadena de
-caracteres por otra. Cuando teclea M-x, Emacs le pregunta al final de
-la pantalla con M-x y debe escribir el nombre del comando; en este
-caso "replace-string". Solo teclee "repl s<TAB>" y Emacs completar
-el nombre. (<TAB> es la tecla del tabulador, que habitualment est
-situada sobre la tecla de bloquear maysculas o la de shift, en el
-lado izquierdo del teclado.) Para aceptar el comando y ejecutarlo,
-pulse <Return>.
+comando replace-string, el cual substituye una cadena de caracteres
+por otra en todo el buffer. Cuando teclea M-x, Emacs le pregunta al
+final de la pantalla con M-x y debe escribir el nombre del comando; en
+este caso "replace-string". Solo teclee "repl s<TAB>" y Emacs
+completar el nombre. (<TAB> es la tecla del tabulador, que
+habitualment est situada sobre la tecla de bloquear maysculas o la
+de shift, en el lado izquierdo del teclado.) Para aceptar el comando
+y ejecutarlo, pulse <Return>.
El comando replace-string requiere dos argumentos: la cadena de
caracteres a reemplazar, y la cadena de caracteres para reemplazarla.
@@ -711,8 +706,8 @@ Debe terminar cada argumento con <Return>.
A continuacin escriba
M-x repl s<Return>cambiado<Return>alterado<Return>.
- Note cmo esta lnea ha cambiado: ha substituido la palabra
- c-a-m-b-i-a-d-o por "alterado" en cada ocurrencia, despus de la
+ Note cmo ha cambiado la lnea: ha substituido la palabra
+ "cambiado" por "alterado" en cada ocurrencia, despus de la
posicin inicial del cursor.
@@ -804,7 +799,9 @@ pero funcionan de forma un poco diferente.
Para ver la documentacin del modo mayor actual, teclee C-h m.
->> Use C-l C-l para traer esta lnea en la parte superior de la
+>> Mueva el cursor a la lnea siguiente a la actual.
+
+>> Use C-l C-l para traer esta lnea a la parte superior de la
pantalla.
>> Teclee C-h m, para ver como el modo de Texto difiere del modo
@@ -1102,9 +1099,9 @@ pregunte por ella.
>> Teclee C-h a file <Return>.
Esto muestra en otra ventana una lista de todos los comandos M-x con
-la palabra "file" en sus nombres. Ver comandos de caracteres como
-C-x C-f listados adems de los nombres de los comandos
-correspondientes tales como find-file.
+la palabra "file" en sus nombres. Ver los comandos de caracteres
+listados junto a los nombres de los comandos correspondientes (por
+ejemplo, C-x C-f junto a find-file).
>> Teclee C-M-v para desplazar la ventana de ayuda. Haga esto unas
cuantas veces.
diff --git a/etc/tutorials/TUTORIAL.fr b/etc/tutorials/TUTORIAL.fr
index 89ec7c16f8b..7b829ccee73 100644
--- a/etc/tutorials/TUTORIAL.fr
+++ b/etc/tutorials/TUTORIAL.fr
@@ -18,10 +18,10 @@ tapez C-g. Dans ce didacticiel, les caractres ">>" en marge gauche
indiquent les directions suivre pour essayer une commande. Ainsi :
<<Lignes blanches insres aprs cette ligne par help-with-tutorial>>
[Centre de page delibrment vide. Le texte continue ci-dessous.]
->> Tapez C-v (Voir l'cran suivant) pour passer l'cran suivant
- (faites-le, pressez la touche CTRL tout en pressant la touche v).
- partir de maintenant, vous devrez le faire chaque fois que
- vous avez fini de lire l'cran.
+>> Tapez C-v (Voir l'cran suivant) pour passer l'cran suivant
+ (faites-le, pressez la touche CTRL tout en pressant la touche v).
+ partir de maintenant, vous devrez le faire chaque fois que
+ vous avez fini de lire l'cran.
Vous remarquerez qu'il y a un recouvrement de deux lignes lorsque l'on
passe d'un cran un autre : cela permet une certaine continuit dans
@@ -33,7 +33,7 @@ C-v. Pour revenir un cran en arrire, tapez M-v (pressez la touche
META tout en appuyant sur v ou faites <ESC>v si vous n'avez pas de
touche META, EDIT ou ALT).
->> Faites M-v, puis C-v plusieurs fois.
+>> Faites M-v, puis C-v plusieurs fois.
* RSUM
@@ -228,13 +228,13 @@ d'un paramtre prfixe, quelle que soit sa valeur, force la commande
agir diffremment.
C-v et M-v constituent un autre type d'exception. Lorsqu'on leur donne
-un paramtre, elles font dfiler l'cran vers le haut ou vers le bas
+un paramtre, elles font dfiler le texte vers le haut ou vers le bas
du nombre de lignes indiqu au lieu de passer d'un cran complet
-l'autre. C-u 8 C-v, par exemple, fait dfiler l'cran de 8 lignes.
+l'autre. C-u 8 C-v, par exemple, fait dfiler le texte de 8 lignes.
>> Faites C-u 8 C-v.
-Cela a d dplacer l'cran de 8 lignes vers le haut. Si vous voulez
+Cela a d dplacer le texte de 8 lignes vers le haut. Si vous voulez
redescendre de 8 lignes, il suffit de passer ce nombre comme paramtre
de M-v.
@@ -307,11 +307,10 @@ supprime toutes les autres fentres.
>> Faites C-x 1 et la fentre de documentation disparat.
-Cette commande est diffrente de celles que nous avons dj vues car
-elle est forme de deux caractres. Elle commence par le caractre
-CONTROLE-x, comme le font de nombreuses commandes de manipulation de
-fentres, fichiers, tampons et autres entits associes. Ces commandes
-font deux, trois ou quatre caractres.
+Il y a toute une srie de commandes qui commencent par CONTROL-x;
+nombre d'entre elles ont voir avec la manipulation de fentres,
+fichiers, tampons et autres entits associes. Ces commandes font
+deux, trois ou quatre caractres de long.
* INSERTION ET SUPPRESSION
@@ -370,7 +369,7 @@ Rappelez-vous que la plupart des commandes Emacs peuvent utiliser un
nombre de rptitions ; les caractres de texte font de mme. La
rptition d'un caractre de texte l'insre plusieurs fois.
->> Faites C-u 8 * pour insrer ********.
+>> Faites C-u 8 * pour insrer ********.
Vous connaissez maintenant la mthode la plus simple pour taper du
texte dans Emacs et pour corriger les erreurs. Vous pouvez galement
@@ -572,11 +571,8 @@ deviennent permanentes, faites :
Cette commande copie dans le fichier le texte qui est dans Emacs. La
premire fois, Emacs renomme le fichier original afin qu'il ne soit
pas perdu. Le nom de cette sauvegarde est construit en ajoutant ~
- la fin du nom initial.
-
-Lorsque la sauvegarde est finie, Emacs affiche le nom du fichier
-crit. Sauvegardez intervalles rguliers afin de perdre le moins
-possible de travail au cas o votre systme se planterait.
+ la fin du nom initial. Lorsque la sauvegarde est finie, Emacs
+affiche le nom du fichier crit.
>> Faites C-x C-s pour sauvegarder votre copie du didacticiel.
Cela devrait crire "Wrote ...TUTORIAL.fr" en bas de l'cran.
@@ -694,7 +690,7 @@ commande spciale pour vous dplacer d'Emacs une autre application.
Vous pouvez le faire l'aide de la souris ou avec les commandes du
gestionnaire de fentres. Cependant, si vous utilisez un terminal
texte ne pouvant afficher qu'une application la fois, vous devez
- suspendre Emacs pour passer n'importe quel autre programme.
+ suspendre Emacs pour passer n'importe quelle autre application.
C-z est la commande permettant de quitter *temporairement* Emacs --
afin de pouvoir revenir la mme session plus tard. Sur les systmes
@@ -704,7 +700,8 @@ vous pouvez revenir Emacs en faisant la commande 'fg' ou '%emacs'.
Le moment idal pour utiliser C-x C-c est lorsque l'on se
dconnecte. C'est aussi la commande adapte pour sortir d'un Emacs
-invoqu par un programme de courrier ou tout autre utilitaire.
+invoqu pour une modification rapide, par exemple par un programme de
+courrier ou tout autre utilitaire.
Il existe de nombreuses commandes C-x. Voici une liste de celles que
vous avez apprises :
@@ -719,7 +716,7 @@ vous avez apprises :
Les eXtensions de commandes nommes sont des commandes utilises
encore moins souvent, ou des commandes qui ne servent que dans
certains modes. Un exemple est la commande replace-string, qui
-remplace globalement une chane par une autre. Lorsque vous faites
+remplace une chane par une autre dans un tampon. Lorsque vous faites
M-x, Emacs affiche M-x en bas de l'cran et vous demande de taper le
nom de la commande, replace-string ici. Contentez-vous de faire
repl s<TAB> et Emacs compltera le nom (<TAB> reprsente la touche
@@ -735,7 +732,7 @@ paramtre par <Entre>.
Puis, faites M-x repl s<Entre>change<Entre>modifie<Entre>.
Notez comment cette ligne a t change : vous avez remplac le mot
- c-h-a-n-g--e par modifie chaque fois qu'il apparaissait aprs
+ change par modifie chaque fois qu'il apparaissait aprs
la position initiale du curseur.
@@ -949,7 +946,7 @@ manuel d'Emacs contient un Glossaire des termes d'Emacs.)
fentres. Toutes les deux affichent ce didacticiel et le curseur
reste dans celle du haut.
->> Faites C-M-v pour faire dfiler la fentre du bas
+>> Faites C-M-v pour faire dfiler le texte de la fentre du bas
(Si vous n'avez pas de touche Meta, faites <ESC> C-v).
>> Tapez C-x o ( o pour other ) afin de placer le curseur dans
@@ -1123,9 +1120,9 @@ Voici d'autres options utiles de C-h :
>> Faites C-h a file<Entre>.
Cela affiche dans une autre fentre une liste de toutes les commandes
-M-x ayant file dans leurs noms. Vous verrez des commandes
-caractres, comme C-x C-f, apparatre ct des noms de commandes qui
-leur correspondent, comme find-file.
+M-x ayant file dans leurs noms. Vous verrez liste des commandes
+caractres ct des noms de commandes qui leur correspondent (comme
+C-x C-f ct de find-file).
>> Faites C-M-v pour faire dfiler la fentre d'aide. Faites-le
plusieurs fois.
diff --git a/etc/tutorials/TUTORIAL.he b/etc/tutorials/TUTORIAL.he
index cb82f87f765..e0c85a379a9 100644
--- a/etc/tutorials/TUTORIAL.he
+++ b/etc/tutorials/TUTORIAL.he
@@ -1,4 +1,4 @@
-שיעור ראשון בשימוש ב־Emacs. זכויות שימוש ראה בסוף המסמך.
+שיעור ראשון בשימוש ב־‫Emacs‬. זכויות שימוש ראה בסוף המסמך.
פקודות רבות של Emacs משתמשות במקש CONTROL (לפעמים הוא מסומן ב־CTRL או CTL)
או במקש META (לפעמים מסומן EDIT או ALT). במקום לציין את כל השמות האפשריים
diff --git a/etc/tutorials/TUTORIAL.ru b/etc/tutorials/TUTORIAL.ru
index 0d7405eb1e6..13c79b99f1f 100644
--- a/etc/tutorials/TUTORIAL.ru
+++ b/etc/tutorials/TUTORIAL.ru
@@ -406,7 +406,7 @@ C-k удалит две строки, а также завершающие их
текста). Вы можете восстановить убитый текст в месте удаления или в любой
другой точке редактируемого текста или даже в другом файле. Вы можете
восстановить текст несколько раз и получить несколько копий данного текста.
-Некоторые редактора называют операции "убить" и "восстановить" как
+Некоторые редакторы называют операции "убить" и "восстановить" иначе:
"вырезать" (cutting) и "вставить" (pasting) (ознакомьтесь с глоссарием
(Glossary) в руководстве по Emacs).
diff --git a/etc/tutorials/TUTORIAL.sv b/etc/tutorials/TUTORIAL.sv
index 7db452e79fc..3f721e5f455 100644
--- a/etc/tutorials/TUTORIAL.sv
+++ b/etc/tutorials/TUTORIAL.sv
@@ -11,7 +11,7 @@ ALT eller EDIT). Vi anvnder hr fljande frkortningar:
den och trycker sedan <chr>.
Viktigt: Fr att avsluta Emacs trycker du C-x C-c (tv tecken).
-Fr att avsluta kommandon som inte skrivits in fullt, tryck C-g.
+Fr att avsluta kommandon som inte skrivits in fullt, tryck C-g.
Tecknen ">>" i vnstermarginalen anger att du kan prova ett
kommando. Till exempel:
<<Tomma rader stts in runt nsta rad nr help-with-tutorial aktiveras>>
@@ -291,24 +291,24 @@ tas bort.
>> Sl C-x 1 och se hur dokumentationsfnstret nu frsvinner.
Kommandot skiljer sig lite frn andra kommandon du har lrt dig
-eftersom det bestr av tv tecken. Det startar med tecknet
-KONTROLL-x. Det r faktisk mnga kommandon som startar med KONTROLL-x
-och mnga av dem har med filer, skrmbilder och liknande saker att
-gra. Dessa kommandon r tv, tre eller fyra tecken lnga.
+eftersom det bestr av tv tecken. Det startar med tecknet KONTROLL-x.
+Det finns mnga kommandon som startar med KONTROLL-x och mnga av dem
+har med filer, skrmbilder och liknande saker att gra. Dessa
+kommandon r tv, tre eller fyra tecken lnga.
* SKRIVA OCH TA BORT TEXT
-------------------------
-Om du nskar att stta in text r det bara att skriva in texten.
-Vanliga tecken, som A, 7, *, etc., stts in direkt nr du skriver dem.
+Om du nskar att stta in text r det bara att skriva in texten.
+Vanliga tecken, som A, 7, *, etc., stts in direkt nr du skriver dem.
Tryck p <Return> fr att stta in en radbrytning. (Det r den tangent
p tangentbordet som ibland r mrkt med "Enter")
-Fr att radera <DEL> tecknet omedelbart fre aktuell markrposition,
-skriv <DEL>. Det r tangenten p tangentbordet som vanligtvis r
-markerad med "Backspace" -- det r samma tangent som du normal
-anvnder fr att radera det sist inmatade tecknet utanfr Emacs.
+Fr att radera tecknet omedelbart fre aktuell markrposition, tryck
+p <DEL>. Det r tangenten p tangentbordet som vanligtvis r markerad
+med "Backspace" -- det r samma tangent som du normal anvnder fr att
+radera det sist inmatade tecknet utanfr Emacs.
Det kan finnas en annan tangent p ditt tangentbordet som r mrkt med
"Delete", men det r inte den vi menar med <DEL>.
@@ -885,7 +885,7 @@ ordlista ver Emacs-termer.
>> Flytta markren till den hr raden och tryck C-l C-l.
>> Skriv nu C-x 2, som leder till att skrmen delas i tv
- fnster. Bgge fnstren visar den hr vgledningen.
+ fnster. Bgge fnstren visar den hr vgledningen.
Redigeringsmarkren stannar i det vre fnstret.
>> Skriv C-M-v fr att rulla det nedre fnstret.