From: Heime via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
To: Stephen Berman <stephen.berman@gmx.net>
Cc: Heime via Users list for the GNU Emacs text editor
<help-gnu-emacs@gnu.org>
Subject: Re: Passing a list of symbols to function argument
Date: Fri, 29 Nov 2024 21:16:09 +0000 [thread overview]
Message-ID: <SGoJGHB8c0ZE95ssyFaBtFYb_kO57oUeiB7mbrK-pwFQzw4AKu7dnNLPO6KPcd8lwIQbfyEmT8c-1Ju9F5EThEnI4uaC2xL5U7NB3tuM8eQ=@protonmail.com> (raw)
In-Reply-To: <87ldx17oxv.fsf@gmx.net>
On Saturday, November 30th, 2024 at 8:41 AM, Stephen Berman <stephen.berman@gmx.net> wrote:
> On Fri, 29 Nov 2024 20:15:04 +0000 Heime heimeborgia@protonmail.com wrote:
>
> > On Saturday, November 30th, 2024 at 7:54 AM, Stephen Berman
> > stephen.berman@gmx.net wrote:
> >
> > > On Fri, 29 Nov 2024 17:34:01 +0000 Heime via Users list for the GNU Emacs
> > > text editor help-gnu-emacs@gnu.org wrote:
> > >
> > > > Why do I get
> > > >
> > > > Wrong type argument: stringp, tabtrail
> > > >
> > > > When using the call
> > > >
> > > > (poalatuk '(72 tabtrail global))
> > > >
> > > > to the function
> > > >
> > > > (defun poalatuk (actm-seqr)
> > > >
> > > > (interactive
> > > > (let* ( (colw (read-number "Line Column: " 72))
> > > > (cseq '("extended" "disable" "tabtrail"))
> > > > (rsel (completing-read "Selector: " cseq nil t "tabtrail"))
> > > > (scope (completing-read "Scope: "
> > > > '("global" "local") nil t "local")) )
> > > >
> > > > ;; Pass a single list as argument
> > > > (list (list colw rsel scope))) )
> > > >
> > > > ;; -------------------------------------------------------------
> > > >
> > > > (message "poalatuk: %S" actm-seqr)
> > > >
> > > > (let* ( (colw (nth 0 actm-seqr)) ;; Extract column width.
> > > > (rsel (intern (nth 1 actm-seqr))) ;; Extract mode selector.
> > >
> > > ^^^^^^^^^^^^^^^^^^^^^^^^^^
> > >
> > > The error happens here. You passed '(72 tabtrail global) as the value
> > > of the argument actm-seqr, so (nth 1 actm-seqr) returns the symbol
> > > `tabtrail'. But` intern' takes a string and returns the symbol (in the
> > > obarray) whose name is given by the string.
> > >
> > > Steve Berman
> >
> > I want the function to accept both symbols and strings. intern must then
> > be applied only when a string is passed. Which undoubtedly needs a conditional
> > check.
> >
> > Perhaps I should also test whether the argument is a symbol or do the if
> > and pcase handle errors (because the commands will be skipped).
> >
> > (let* ((colw (nth 0 actm-seqr))
> > (rsel (if (stringp (nth 1 actm-seqr))
> > (intern (nth 1 actm-seqr))
> > (nth 1 actm-seqr)))
> > (scope (if (stringp (nth 2 actm-seqr))
> > (intern (nth 2 actm-seqr))
> > (nth 2 actm-seqr))))
>
>
> This seems fine; `if' does not do error handling, nor does` pcase' AFAIK
> (but there are several variants and extensions of pcase, and I'm not too
> familiar with them, so maybe some of them do error handling), but
> `condition-case' is the basic error handling form in Elisp. Alternatively, since the error only happens in noninteractive calls (since interactive calls use` completing-read', which returns strings),
> you could condition on `called-interactively-p'.
>
> Steve Berman
For the interactive call I want to pass the three values so that
actm-seqr will be a list of three objects.
Thus I do
(list (list colw rsel scope))
Would the above be correct?
With only (list colw rsel scope) emacs does complain.
I wonder whether actm-seqr will give me ((72 tabtrail global))
and not (72 tabtrail global).
Have also been looking at the possibility of using
(list (list colw (intern rsel) (intern scope)))
Or would this be considered replication? Because the call
to intern would happen later anyway.
next prev parent reply other threads:[~2024-11-29 21:16 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-29 17:34 Passing a list of symbols to function argument Heime via Users list for the GNU Emacs text editor
2024-11-29 19:54 ` Stephen Berman
2024-11-29 20:15 ` Heime via Users list for the GNU Emacs text editor
2024-11-29 20:41 ` Stephen Berman
2024-11-29 21:16 ` Heime via Users list for the GNU Emacs text editor [this message]
2024-11-29 21:29 ` Stephen Berman
2024-11-29 21:41 ` Heime via Users list for the GNU Emacs text editor
2024-11-29 21:52 ` Stephen Berman
2024-11-29 22:45 ` Heime via Users list for the GNU Emacs text editor
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='SGoJGHB8c0ZE95ssyFaBtFYb_kO57oUeiB7mbrK-pwFQzw4AKu7dnNLPO6KPcd8lwIQbfyEmT8c-1Ju9F5EThEnI4uaC2xL5U7NB3tuM8eQ=@protonmail.com' \
--to=help-gnu-emacs@gnu.org \
--cc=heimeborgia@protonmail.com \
--cc=stephen.berman@gmx.net \
/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 external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.