summaryrefslogtreecommitdiff
path: root/devdocs/elisp/scanning-charsets.html
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
committerCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
commit82ba818ff456bcd6d56a06226e3f27e98fbb55c3 (patch)
tree158cfc17b2f644a10f063cb546752cfaae12c97f /devdocs/elisp/scanning-charsets.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/elisp/scanning-charsets.html')
-rw-r--r--devdocs/elisp/scanning-charsets.html14
1 files changed, 0 insertions, 14 deletions
diff --git a/devdocs/elisp/scanning-charsets.html b/devdocs/elisp/scanning-charsets.html
deleted file mode 100644
index ae68e483..00000000
--- a/devdocs/elisp/scanning-charsets.html
+++ /dev/null
@@ -1,14 +0,0 @@
- <h3 class="section">Scanning for Character Sets</h3> <p>Sometimes it is useful to find out which character set a particular character belongs to. One use for this is in determining which coding systems (see <a href="coding-systems">Coding Systems</a>) are capable of representing all of the text in question; another is to determine the font(s) for displaying that text. </p> <dl> <dt id="charset-after">Function: <strong>charset-after</strong> <em>&amp;optional pos</em>
-</dt> <dd><p>This function returns the charset of highest priority containing the character at position <var>pos</var> in the current buffer. If <var>pos</var> is omitted or <code>nil</code>, it defaults to the current value of point. If <var>pos</var> is out of range, the value is <code>nil</code>. </p></dd>
-</dl> <dl> <dt id="find-charset-region">Function: <strong>find-charset-region</strong> <em>beg end &amp;optional translation</em>
-</dt> <dd>
-<p>This function returns a list of the character sets of highest priority that contain characters in the current buffer between positions <var>beg</var> and <var>end</var>. </p> <p>The optional argument <var>translation</var> specifies a translation table to use for scanning the text (see <a href="translation-of-characters">Translation of Characters</a>). If it is non-<code>nil</code>, then each character in the region is translated through this table, and the value returned describes the translated characters instead of the characters actually in the buffer. </p>
-</dd>
-</dl> <dl> <dt id="find-charset-string">Function: <strong>find-charset-string</strong> <em>string &amp;optional translation</em>
-</dt> <dd><p>This function returns a list of character sets of highest priority that contain characters in <var>string</var>. It is just like <code>find-charset-region</code>, except that it applies to the contents of <var>string</var> instead of part of the current buffer. </p></dd>
-</dl><div class="_attribution">
- <p class="_attribution-p">
- Copyright &copy; 1990-1996, 1998-2022 Free Software Foundation, Inc. <br>Licensed under the GNU GPL license.<br>
- <a href="https://www.gnu.org/software/emacs/manual/html_node/elisp/Scanning-Charsets.html" class="_attribution-link">https://www.gnu.org/software/emacs/manual/html_node/elisp/Scanning-Charsets.html</a>
- </p>
-</div>