Re: Determine object passed as argument
Heime <[email protected]>
| Newsgroups | gmane.emacs.help |
|---|---|
| Message-ID | <NFUR52f3Otk8WwcIljcTVzT8tCw7P4jynYnufBVZS_S8GN04DtZ3GTAShwS7AizArJOlmIlZuozpkcuYFysOF4TlDiDMDXTWV-9eGA9pvo8=@protonmail.com> |
On Sunday, April 12th, 2026 at 5:19 PM, Jean Louis <[email protected]> wrote: > On 2026-04-11 17:28, Heime wrote: > > > I actually need symbol-name. Cannot understand the problem you are > > trying to describe to me. > > (defun lana-du-fpln (datenstruk-symbol &optional bname) > (message "Processing variable: %s" (symbol-name datenstruk-symbol))) > > (lana-du-fpln 'fpln) ⇒ "Processing variable: fpln" In my implementation I use (lana-du-fpln myplist) rather than (lana-du-fpln 'myplist). Only in the second does the symbol name myplist get printed. Would I be capable of doing something with myplist when using (lana-du-fpln 'myplist) - to print its key-value pairs? > -- > Jean Louis > >