all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Emanuel Berg via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Is there way to read function invoked and its parameters?
Date: Sun, 27 Dec 2020 19:39:35 +0100	[thread overview]
Message-ID: <87blefjdp4.fsf@zoho.eu> (raw)
In-Reply-To: 9e5a8908-51c4-4abb-bdf2-b07fba13d651@default

Drew Adams wrote:

>> Would this concept be possible in Emacs Lisp:
>> 
>> (defun my-function (arg &optional arg-1 arg-2)
>>   (call-other-function (this-function-called parameters-to-this-function)))
>> 
>> Then the other function would receive something like
>> 
>>  (my-function ARGUMENTS)
>
> Reading quickly, so perhaps not understanding the request.
> But I'm guessing that advice is what you're looking for.

I'm not understanding either.

What do you mean by "this-function-called"?

You can pass a function as an argument, of course, if that is
the focus point. (it is known by many names, sometimes
"higher-order programming", sometimes "Aggregate functions",
sometimes list or set functions - but to us Lispers it is so
natural it doesn't need a name IMO)

If it is about passing arg-1 and arg-2 you can use arg &rest
args and then concatenate them or by using backquote:

(defun add-all (first &rest rest)
  (apply `(+ ,@(cons first rest))) )

(add-all 1)       ;  1
(add-all 1 3)     ;  4
(add-all 1 3 3 7) ; 14

Or do it some other way with &rest

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




  reply	other threads:[~2020-12-27 18:39 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <<courier.000000005FE8CA54.00006BFB@stw1.rcdrun.com>
2020-12-27 18:20 ` Is there way to read function invoked and its parameters? Drew Adams
2020-12-27 18:39   ` Emanuel Berg via Users list for the GNU Emacs text editor [this message]
2020-12-28  6:57     ` Jean Louis
2020-12-28 16:40       ` Drew Adams
2020-12-28 19:58         ` Jean Louis
2020-12-27 17:54 Jean Louis
2020-12-27 18:04 ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-12-27 19:11 ` Yuri Khan
2020-12-28  7:07   ` Jean Louis
2020-12-28  9:04     ` Yuri Khan

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=87blefjdp4.fsf@zoho.eu \
    --to=help-gnu-emacs@gnu.org \
    --cc=moasenwood@zoho.eu \
    /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.