unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Federico Tedin <federicotedin@gmail.com>
To: emacs-devel@gnu.org
Subject: Questions regarding char-table-range RANGE arg
Date: Thu, 31 Aug 2023 23:54:01 +0200	[thread overview]
Message-ID: <182a9111-f3e1-e098-97ec-1f5a5269362d@gmail.com> (raw)

Hi everyone,

I was trying to understand better how char tables work but I got stuck 
at the following:

In the docs for `char-table-range' 
(https://www.gnu.org/software/emacs/manual/html_node/elisp/Char_002dTables.html), 
it is mentioned
that it is possible to specify (from . to) as the value for RANGE. This 
already seemed a bit unexpected for me, as the function
is supposed to retrieve a single value from the char table - how could 
it do it for a range, where potentially many different values
could be defined? I did some tests:

(setq tt (make-char-table nil))

(set-char-table-range tt (cons 10 20) "foo")
(set-char-table-range tt (cons 21 25) "bar")

(char-table-range tt (cons 5 15)) ; includes some "foo" values?
   -> nil ; no

(char-table-range tt (cons 10 15)) ; includes some "foo" values?
   -> "foo" ; yes, makes sense

(char-table-range tt (cons 15 22)) ; includes some "foo" and "bar" values?
   -> "foo" ; ok, only the first range was considered

(char-table-range tt (cons 15 0)) ; what if I set `to' to a nonsensical 
value?
   -> "foo"

(char-table-range tt (cons 15 99999)) ; or this one
   -> "foo"

(char-table-range tt (cons 26 30)) ; should return nil
   -> nil ; ok

So from my tests it seems like only `from' is considered? Similar to the 
case where RANGE is just a character. I was hoping someone
with a better understanding of character tables could maybe explain the 
behaviour observed above. It is possible it could me just
missinterpreting the documentation (I am trying to keep a more end-user 
perspective for this, i.e. not look at the Emacs source code
and only use documentation). I did try looking also into 
chartab-tests.el though but could not find more information there.

Thanks!




             reply	other threads:[~2023-08-31 21:54 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-31 21:54 Federico Tedin [this message]
2023-09-01  7:34 ` Questions regarding char-table-range RANGE arg Eli Zaretskii
2023-09-02  8:36   ` Federico Tedin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=182a9111-f3e1-e098-97ec-1f5a5269362d@gmail.com \
    --to=federicotedin@gmail.com \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).