aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--man/custom.texi10
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
108text instead of shoving it to the right. For example, if point is in 106text instead of shoving it to the right. For example, if point is in
109front of the @samp{B} in @samp{FOOBAR}, then in Overwrite mode typing a 107front 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
112character whatever it may be, even if it is a digit---this gives you a 110character whatever it may be, even if it is a digit---this gives you a
113way to insert a character instead of replacing an existing character. 111way 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
116commands which toggle minor modes are normally not bound to keys: it is
117bound to the @key{INSERT} function key. This is because many other
118programs 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
116binary files; it treats newlines and tabs like other characters, so that 122binary files; it treats newlines and tabs like other characters, so that
117they overwrite other characters and can be overwritten by them. 123they overwrite other characters and can be overwritten by them.