diff options
| author | Eli Zaretskii | 2022-09-04 10:03:22 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2022-09-04 10:03:22 +0300 |
| commit | d2abe9adf7a1bfcdfd712de1446fd3e710e0f699 (patch) | |
| tree | 913687e2d3cd9eba4072923cbef7a8638557619c | |
| parent | b35a93a0619400e93fd76d7de3d837f990802274 (diff) | |
| download | emacs-d2abe9adf7a1bfcdfd712de1446fd3e710e0f699.tar.gz emacs-d2abe9adf7a1bfcdfd712de1446fd3e710e0f699.zip | |
; * lisp/disp-table.el (standard-display-by-replacement-char): Doc fix.
| -rw-r--r-- | lisp/disp-table.el | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el index 1b14808d788..53dff1e7097 100644 --- a/lisp/disp-table.el +++ b/lisp/disp-table.el | |||
| @@ -307,10 +307,14 @@ be represented by a replacement character. You can evaluate the produced | |||
| 307 | code to use the setup for the current Emacs session, or copy the code | 307 | code to use the setup for the current Emacs session, or copy the code |
| 308 | into your init file, to make Emacs use it for subsequent sessions. | 308 | into your init file, to make Emacs use it for subsequent sessions. |
| 309 | 309 | ||
| 310 | FROM and TO define the range of characters for which to produce the | 310 | Interactively, the produced code arranges for any character in |
| 311 | setup code for `standard-display-table'. If they are omitted, they | 311 | the range [#x100..#x10FFFF] that the terminal cannot display to |
| 312 | default to #x100 and #x10FFFF respectively, covering the entire | 312 | be represented by the #xFFFD Unicode replacement character. |
| 313 | non-ASCII range of Unicode characters. | 313 | |
| 314 | When called from Lisp, FROM and TO define the range of characters for | ||
| 315 | which to produce the setup code for `standard-display-table'. If they | ||
| 316 | are omitted, they default to #x100 and #x10FFFF respectively, covering | ||
| 317 | the entire non-ASCII range of Unicode characters. | ||
| 314 | REPL is the replacement character to use. If it's omitted, it defaults | 318 | REPL is the replacement character to use. If it's omitted, it defaults |
| 315 | to #xFFFD, the Unicode replacement character, usually displayed as a | 319 | to #xFFFD, the Unicode replacement character, usually displayed as a |
| 316 | black diamond with a question mark inside. | 320 | black diamond with a question mark inside. |