From: Heime via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
To: Heime via Users list for the GNU Emacs text editor
<help-gnu-emacs@gnu.org>
Subject: Passing a list of symbols to function argument
Date: Fri, 29 Nov 2024 17:34:01 +0000 [thread overview]
Message-ID: <KmdXK_o5MYqWNKfrHPfr4Yz6v67bBf_pF9DshGI7SFO09GM3cus--6F9j13nD4wn8Km8ADUJM-q5A1Eee2PtLmtyDDRDEKQDHI2GRQWS6Yg=@protonmail.com> (raw)
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.
(scope (intern (nth 2 actm-seqr))) ) ;; Extract scope.
(require 'whitespace)
(if (eq scope 'global)
(global-whitespace-mode 0)
(whitespace-mode 0))
(pcase rsel
('tabtrail
(setq whitespace-line-column (or colw 72))
(setq whitespace-style
'(face tabs tab-mark trailing lines-char))
(if (eq scope 'global)
(global-whitespace-mode 1)
(whitespace-mode 1)))
('extended
(setq whitespace-line-column (or colw 72))
(setq whitespace-style
'(face tabs tab-mark indentation trailing lines-char
space-before-tab space-after-tab))
(if (eq scope 'global)
(global-whitespace-mode 1)
(whitespace-mode 1)) )
('disable
(if (eq scope 'global)
(global-whitespace-mode 0)
(whitespace-mode 0)) )) ))
I want to pass alist as an argument to the function such as
(poalatuk '(72 tabtrail global))
And expecting that actm-seqr would be alist.
next reply other threads:[~2024-11-29 17:34 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-29 17:34 Heime via Users list for the GNU Emacs text editor [this message]
2024-11-29 19:54 ` Passing a list of symbols to function argument 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
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
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='KmdXK_o5MYqWNKfrHPfr4Yz6v67bBf_pF9DshGI7SFO09GM3cus--6F9j13nD4wn8Km8ADUJM-q5A1Eee2PtLmtyDDRDEKQDHI2GRQWS6Yg=@protonmail.com' \
--to=help-gnu-emacs@gnu.org \
--cc=heimeborgia@protonmail.com \
/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.
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).