all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Emanuel Berg <embe8573@student.uu.se>
To: help-gnu-emacs@gnu.org
Subject: Re: factor out error message functions, access function stack to know location
Date: Tue, 27 Oct 2015 02:50:51 +0100	[thread overview]
Message-ID: <87d1w1jczo.fsf@debian.uxu> (raw)
In-Reply-To: 87io5tjguq.fsf@debian.uxu

Emanuel Berg <embe8573@student.uu.se> writes:

> Using `backtrace-frame', this almost worked ...

This excludes the "subr" functions - are they the
C ones?

Probably those are all you need to steer the flow to
the error communicator. And then it should work!

To quote the Captain of Titanic, "Now, nothing can
go wrong!"

(defun backtrace-to-non-subr-frame ()
  (let ((i 6) ; offset determined by how *this* function is built
        (f) )
    (cl-loop while (setq f (cadr (backtrace-frame (incf i)))) do
             (when (member (type-of (symbol-function f)) '(cons compiled-function))
               (cl-return f) ))))

(defun function-stack-caller ()
  (backtrace-to-non-subr-frame) )
;; (function-stack-caller) ; function-stack-caller

(defun function-stack-embedded-caller ()
  (if 'some-error-check (backtrace-to-non-subr-frame) ))
;; (function-stack-embedded-caller) ; function-stack-embedded-caller

-- 
underground experts united
http://user.it.uu.se/~embe8573




  reply	other threads:[~2015-10-27  1:50 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.1053.1445821696.7904.help-gnu-emacs@gnu.org>
2015-10-26  2:42 ` factor out error message functions, access function stack to know location Dan Espen
2015-10-27  0:27   ` Emanuel Berg
2015-10-27  1:50     ` Emanuel Berg [this message]
2015-10-26  1:17 Emanuel Berg

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=87d1w1jczo.fsf@debian.uxu \
    --to=embe8573@student.uu.se \
    --cc=help-gnu-emacs@gnu.org \
    /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.