diff options
| author | Richard M. Stallman | 1997-07-16 05:37:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-16 05:37:04 +0000 |
| commit | 37fb02008a3f544c5d99d6880520aa43c8bcbcd5 (patch) | |
| tree | a4c0bc6613f8f062fdbb6e31277753465b162258 | |
| parent | 2444730b8b8ae2c812ba95bd591be1c94192949b (diff) | |
| download | emacs-37fb02008a3f544c5d99d6880520aa43c8bcbcd5.tar.gz emacs-37fb02008a3f544c5d99d6880520aa43c8bcbcd5.zip | |
(quoted-insert): Doc fix.
| -rw-r--r-- | lisp/simple.el | 10 |
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. |
| 159 | This is useful for inserting control characters. | 159 | This is useful for inserting control characters. |
| 160 | You may also type up to 3 octal digits, to insert a character with that code. | 160 | |
| 161 | If the first character you type after this command is an octal digit, | ||
| 162 | you should type a sequence of octal digits which specify a character code. | ||
| 163 | Any nondigit terminates the sequence. If the terminator is a space, | ||
| 164 | it is discarded; any other terminator is used itself as input. | ||
| 161 | 165 | ||
| 162 | In overwrite mode, this function inserts the character anyway, and | 166 | In overwrite mode, this function inserts the character anyway, and |
| 163 | does not handle octal digits specially. This means that if you use | 167 | does 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 | |||
| 165 | insert characters when necessary. | 169 | insert characters when necessary. |
| 166 | 170 | ||
| 167 | In binary overwrite mode, this function does overwrite, and octal | 171 | In binary overwrite mode, this function does overwrite, and octal |
| 168 | digits are interpreted as a character code. This is supposed to make | 172 | digits are interpreted as a character code. This is intended to be |
| 169 | this function useful in editing binary files." | 173 | useful 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)) |