diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/basic.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/emacs/basic.texi b/doc/emacs/basic.texi index f2ec11c2c1e..c0a93c9396d 100644 --- a/doc/emacs/basic.texi +++ b/doc/emacs/basic.texi | |||
| @@ -46,12 +46,12 @@ forward, so that point remains just after the inserted text. | |||
| 46 | To end a line and start a new one, type @key{RET} (@code{newline}). | 46 | To end a line and start a new one, type @key{RET} (@code{newline}). |
| 47 | (The @key{RET} key may be labeled @key{Return} or @key{Enter} on your | 47 | (The @key{RET} key may be labeled @key{Return} or @key{Enter} on your |
| 48 | keyboard, but we refer to it as @key{RET} in this manual.) This | 48 | keyboard, but we refer to it as @key{RET} in this manual.) This |
| 49 | command inserts a newline character into the buffer, then indent | 49 | command inserts a newline character into the buffer, then indents |
| 50 | (@pxref{Indentation}) accroding to major mode. If point is at the end | 50 | (@pxref{Indentation}) according to the major mode. If point is at the end |
| 51 | of the line, the effect is to create a new blank line after it and | 51 | of the line, the effect is to create a new blank line after it and |
| 52 | indent the new line; if point is in the middle of a line, the line is | 52 | indent the new line; if point is in the middle of a line, the line is |
| 53 | split at that position. To turn off the auto-indentation, you can | 53 | split at that position. To turn off the auto-indentation, you can |
| 54 | either desable Electric Indent mode (@pxref{Indent Convenience}) or | 54 | either disable Electric Indent mode (@pxref{Indent Convenience}) or |
| 55 | type @kbd{C-j}, which inserts just a newline, without any | 55 | type @kbd{C-j}, which inserts just a newline, without any |
| 56 | auto-indentation. | 56 | auto-indentation. |
| 57 | 57 | ||