aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-16 05:37:04 +0000
committerRichard M. Stallman1997-07-16 05:37:04 +0000
commit37fb02008a3f544c5d99d6880520aa43c8bcbcd5 (patch)
treea4c0bc6613f8f062fdbb6e31277753465b162258
parent2444730b8b8ae2c812ba95bd591be1c94192949b (diff)
downloademacs-37fb02008a3f544c5d99d6880520aa43c8bcbcd5.tar.gz
emacs-37fb02008a3f544c5d99d6880520aa43c8bcbcd5.zip
(quoted-insert): Doc fix.
-rw-r--r--lisp/simple.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 6349f1058ae..a8a65df29c4 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -157,7 +157,11 @@ With arg N, insert N newlines."
157(defun quoted-insert (arg) 157(defun quoted-insert (arg)
158 "Read next input character and insert it. 158 "Read next input character and insert it.
159This is useful for inserting control characters. 159This is useful for inserting control characters.
160You may also type up to 3 octal digits, to insert a character with that code. 160
161If the first character you type after this command is an octal digit,
162you should type a sequence of octal digits which specify a character code.
163Any nondigit terminates the sequence. If the terminator is a space,
164it is discarded; any other terminator is used itself as input.
161 165
162In overwrite mode, this function inserts the character anyway, and 166In overwrite mode, this function inserts the character anyway, and
163does not handle octal digits specially. This means that if you use 167does not handle octal digits specially. This means that if you use
@@ -165,8 +169,8 @@ overwrite as your normal editing mode, you can use this function to
165insert characters when necessary. 169insert characters when necessary.
166 170
167In binary overwrite mode, this function does overwrite, and octal 171In binary overwrite mode, this function does overwrite, and octal
168digits are interpreted as a character code. This is supposed to make 172digits are interpreted as a character code. This is intended to be
169this function useful in editing binary files." 173useful for editing binary files."
170 (interactive "*p") 174 (interactive "*p")
171 (let ((char (if (or (not overwrite-mode) 175 (let ((char (if (or (not overwrite-mode)
172 (eq overwrite-mode 'overwrite-mode-binary)) 176 (eq overwrite-mode 'overwrite-mode-binary))