diff options
| author | Richard M. Stallman | 1997-07-17 04:45:19 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-17 04:45:19 +0000 |
| commit | 037a29613feb82a9a0db5f08b692f8b203dbce16 (patch) | |
| tree | a282fccb187b0083109b7c8146a85b965fb7d4e7 | |
| parent | 55642aa486ffc855ee84c6c9bdad75942fdec2d6 (diff) | |
| download | emacs-037a29613feb82a9a0db5f08b692f8b203dbce16.tar.gz emacs-037a29613feb82a9a0db5f08b692f8b203dbce16.zip | |
(quoted-insert): Doc fix.
| -rw-r--r-- | lisp/simple.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index a8a65df29c4..a2720e2f56c 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -160,8 +160,10 @@ This is useful for inserting control characters. | |||
| 160 | 160 | ||
| 161 | If the first character you type after this command is an octal digit, | 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. | 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, | 163 | Any nondigit terminates the sequence. If the terminator is a RET, |
| 164 | it is discarded; any other terminator is used itself as input. | 164 | it is discarded; any other terminator is used itself as input. |
| 165 | The variable `read-quoted-char-radix' specifies the radix for this feature; | ||
| 166 | set it to 10 or 16 to use decimal or hex instead of octal. | ||
| 165 | 167 | ||
| 166 | In overwrite mode, this function inserts the character anyway, and | 168 | In overwrite mode, this function inserts the character anyway, and |
| 167 | does not handle octal digits specially. This means that if you use | 169 | does not handle octal digits specially. This means that if you use |