From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/elisp/quoted-character-input.html | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 devdocs/elisp/quoted-character-input.html (limited to 'devdocs/elisp/quoted-character-input.html') diff --git a/devdocs/elisp/quoted-character-input.html b/devdocs/elisp/quoted-character-input.html deleted file mode 100644 index bf327981..00000000 --- a/devdocs/elisp/quoted-character-input.html +++ /dev/null @@ -1,18 +0,0 @@ -

Quoted Character Input

You can use the function read-quoted-char to ask the user to specify a character, and allow the user to specify a control or meta character conveniently, either literally or as an octal character code. The command quoted-insert uses this function.

Function: read-quoted-char &optional prompt -
-

This function is like read-char, except that if the first character read is an octal digit (0–7), it reads any number of octal digits (but stopping if a non-octal digit is found), and returns the character represented by that numeric character code. If the character that terminates the sequence of octal digits is RET, it is discarded. Any other terminating character is used as input after this function returns.

Quitting is suppressed when the first character is read, so that the user can enter a C-g. See Quitting.

If prompt is supplied, it specifies a string for prompting the user. The prompt string is always displayed in the echo area, followed by a single ‘-’.

In the following example, the user types in the octal number 177 (which is 127 in decimal).

(read-quoted-char "What character")
-
-
-
---------- Echo Area ----------
-What character 1 7 7-
----------- Echo Area ----------
-
-     ⇒ 127
-
-
-
-

- Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
- https://www.gnu.org/software/emacs/manual/html_node/elisp/Quoted-Character-Input.html -

-
-- cgit v1.2.3