diff options
| -rw-r--r-- | man/custom.texi | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/man/custom.texi b/man/custom.texi index 286d5e9d5cf..8fa5d4e4831 100644 --- a/man/custom.texi +++ b/man/custom.texi | |||
| @@ -102,8 +102,6 @@ combine it with any major mode. @xref{Outline Mode}. | |||
| 102 | 102 | ||
| 103 | @cindex Overwrite mode | 103 | @cindex Overwrite mode |
| 104 | @cindex mode, Overwrite | 104 | @cindex mode, Overwrite |
| 105 | @findex overwrite-mode | ||
| 106 | @findex binary-overwrite-mode | ||
| 107 | Overwrite mode causes ordinary printing characters to replace existing | 105 | Overwrite mode causes ordinary printing characters to replace existing |
| 108 | text instead of shoving it to the right. For example, if point is in | 106 | text instead of shoving it to the right. For example, if point is in |
| 109 | front of the @samp{B} in @samp{FOOBAR}, then in Overwrite mode typing a | 107 | front of the @samp{B} in @samp{FOOBAR}, then in Overwrite mode typing a |
| @@ -112,6 +110,14 @@ as usual. In Overwrite mode, the command @kbd{C-q} inserts the next | |||
| 112 | character whatever it may be, even if it is a digit---this gives you a | 110 | character whatever it may be, even if it is a digit---this gives you a |
| 113 | way to insert a character instead of replacing an existing character. | 111 | way to insert a character instead of replacing an existing character. |
| 114 | 112 | ||
| 113 | @findex overwrite-mode | ||
| 114 | @kindex INSERT | ||
| 115 | The command @code{overwrite-mode} is an exception to the rule that | ||
| 116 | commands which toggle minor modes are normally not bound to keys: it is | ||
| 117 | bound to the @key{INSERT} function key. This is because many other | ||
| 118 | programs bind @key{INSERT} to similar functions. | ||
| 119 | |||
| 120 | @findex binary-overwrite-mode | ||
| 115 | Binary Overwrite mode is a variant of Overwrite mode for editing | 121 | Binary Overwrite mode is a variant of Overwrite mode for editing |
| 116 | binary files; it treats newlines and tabs like other characters, so that | 122 | binary files; it treats newlines and tabs like other characters, so that |
| 117 | they overwrite other characters and can be overwritten by them. | 123 | they overwrite other characters and can be overwritten by them. |