unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* New branch feature/named-lambdas.
@ 2023-07-17 10:14 Alan Mackenzie
  2023-07-17 19:52 ` Philip Kaludercic
  2023-07-19  8:07 ` Ihor Radchenko
  0 siblings, 2 replies; 5+ messages in thread
From: Alan Mackenzie @ 2023-07-17 10:14 UTC (permalink / raw)
  To: emacs-devel

Hello, Emacs.

I've just committed the first version of branch feature/named-lambdas.

This will output the @dfn{defining symbol} of any anonymous functions in
backtraces.

For example, in

    (defun foo ()
      "foo doc string"
      (lambda (bar) "lambda doc string" (car bar)))

M-: (funcall (foo) 'baz) will produce this backtrace:

Debugger entered--Lisp error: (wrong-type-argument listp baz)
  car(baz)
  {foo} #f(compiled-function (bar) "lambda doc string" #<bytecode -0x105933d3d8452e4e>)(baz)  <=============================
  funcall({foo} #f(compiled-function (bar) "lambda doc string" #<bytecode -0x105933d3d8452e4e>) baz)
  (progn (funcall (foo) 'baz))
  elisp--eval-last-sexp(nil)
  eval-last-sexp(nil)
  funcall-interactively(eval-last-sexp nil)
  command-execute(eval-last-sexp)

..  Note the {foo} on the third and fourth lines.  This is (usually) the
defun where the lambda was defined, and is helpful in locating its
source code.

This was achieved by adding an extra defining-symbol field to each of
the three forms of function (interpreted, byte-compiled,
native-compiled).  It is indended that this version of Emacs will
continue to handle functions compiled without this enhancement.

-- 
Alan Mackenzie (Nuremberg, Germany).



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-07-19  8:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-17 10:14 New branch feature/named-lambdas Alan Mackenzie
2023-07-17 19:52 ` Philip Kaludercic
2023-07-17 21:37   ` Alan Mackenzie
2023-07-18 11:14     ` Alan Mackenzie
2023-07-19  8:07 ` Ihor Radchenko

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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).