all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jean Louis <bugs@gnu.support>
To: tomas@tuxteam.de
Cc: Help GNU Emacs <help-gnu-emacs@gnu.org>
Subject: Re: How can function know its own name?
Date: Sun, 26 Jun 2022 11:08:26 +0300	[thread overview]
Message-ID: <YrgT+ntGToDsAFQ3@protected.localdomain> (raw)
In-Reply-To: <YrfysMcY0/eNJIof@tuxteam.de>

* tomas@tuxteam.de <tomas@tuxteam.de> [2022-06-26 08:46]:
> On Sat, Jun 25, 2022 at 11:21:20PM +0300, Jean Louis wrote:
> > 
> > I would like to invoke logging for specific functions automatically,
> > without specifying what to log, and my function should know which
> > function invoked it.
> 
> This is not completely trivial. In Lisp, a function has no name.
> It is a first-class object which can be bound to (the function
> slot) of a symbol (or to that of two, three... symbols).
> 
> It's like the value 42. Many variables can be bound to that. Or
> none.
> 
> What name has (lambda (x) (if (= (mod x 2) 1) (+ (* 3 x) 1) (/ x 2)))?
> 
> None (yet?).
> 
> Try this:
> 
>   (setf (symbol-function 'foo) (lambda (x) (+ x 1)))
> 
> Now:
> 
>   (foo 13)
> 
>   => 14
> 
> So that function that adds one to its argument is now arguably
> called foo. But:
> 
>   (setf (symbol-function 'bar) (symbol-function 'foo))
> 
> Then:
> 
>   (bar 14)
> 
>   => 15
> 
> ...it can be called bar at the same time. Well, I can be called
> two names too, can't I?
> 
> See 13.3 "Naming a function" and 9.1 "Symbol Components" in our
> beloved Emacs Lisp manual for all the gory details.
> 
> Now to the interesting question: how do debuggers pull it off?

OK.

Maybe one way to give function a capacity to find out its name, the
name of the called function from inside of itself could be to call it
in a wrapper which sets global variable to be symbol of the function.

(defvar rcd-called-function)

(defun rcd-call-function (function &rest args)
  (setq rcd-called-function function)
  (apply function args)
  (setq rcd-called-function nil))

(defun my-fun ()
  (message "My function name is: %s" rcd-called-function))

(rcd-call-function 'my-fun) ⇒ nil


-- 
Jean

Take action in Free Software Foundation campaigns:
https://www.fsf.org/campaigns

In support of Richard M. Stallman
https://stallmansupport.org/



  reply	other threads:[~2022-06-26  8:08 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-25 20:21 How can function know its own name? Jean Louis
2022-06-25 21:37 ` Emanuel Berg
2022-06-26  5:46 ` tomas
2022-06-26  8:08   ` Jean Louis [this message]
2022-06-26  8:54 ` Stefan Monnier via Users list for the GNU Emacs text editor
2022-06-26  9:25   ` tomas
2022-06-26 10:13   ` Jean Louis
2022-06-26 21:25     ` Stefan Monnier
2022-06-27  2:35       ` Jean Louis
2022-06-26  9:43 ` Philip Kaludercic
2022-06-26 10:21   ` Jean Louis
2022-06-26 10:31   ` Jean Louis
2022-06-26 21:13     ` Stefan Monnier 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=YrgT+ntGToDsAFQ3@protected.localdomain \
    --to=bugs@gnu.support \
    --cc=help-gnu-emacs@gnu.org \
    --cc=tomas@tuxteam.de \
    /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.