From: Kyle Meyer <kyle@kyleam.com>
To: Takaaki Ishikawa <takaxp@ieee.org>
Cc: orgmode list <emacs-orgmode@gnu.org>
Subject: Re: Quit and Error in org-export--dispatch-action
Date: Fri, 06 Dec 2019 03:48:32 +0000 [thread overview]
Message-ID: <874kyeglm7.fsf@kyleam.com> (raw)
In-Reply-To: <CAJsv8TEn-YX6aND8a_FaZ1go_XoXUPC88EM7ZAhi6j7_QKoedw@mail.gmail.com>
Takaaki Ishikawa <takaxp@ieee.org> writes:
> Dear Kyle and all,
>
> Using user-error is another way, but it does not work for me
> because user-error stops the org-export-dispatch.
> I would like to keep the session to do an action after
> the completing org-export-dispatch something like this:
>
> (defun my-org-export-dispatch (f ARG)
> (interactive "P")
> (if (< (frame-width) 160)
> (apply f ARG)
> (split-window-right)
> (apply f ARG)
> (delete-window)))
> (advice-add 'org-export-dispatch :around #'my-org-export-dispatch)
>
> So I still prefer to replace the error function with a simple message function.
Thanks for providing more context. So if I'm understanding correctly,
the point here is that for your use case/setup you'd like to call
delete-window even when you select 'q' within the org-export-dispatch
call. Signaling a user-error doesn't make this much more difficult: you
can wrap the `(apply f ...)' call within a condition-case.
I see two related advantages of sticking to signaling an error here:
* It stays close to what the current code does. Continuing to signal
an error but replacing `error' with `user-error' reduces the risk of
bugs or unintended changes in behavior while avoiding showing a
backtrace when the caller aborts and debug-on-error is true (the
initial issue reported in this thread).
* 'q' is described as aborting, so I think it's confusing to make 'q'
instead execute a no-op function and continue with the remaining code
in the outer functions, which at the moment boils down to code in
org-export-dispatch. For example, with your suggested change,
issuing 'q' will result in `ignore' being saved as the last export
action, and it's hard to imagine that's an action the user would
expect or want to repeat when calling org-export-dispatch with a
prefix argument.
next prev parent reply other threads:[~2019-12-06 3:48 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-05 7:42 Quit and Error in org-export--dispatch-action Takaaki Ishikawa
2019-12-05 10:27 ` Kyle Meyer
2019-12-05 13:59 ` Takaaki Ishikawa
2019-12-06 3:48 ` Kyle Meyer [this message]
2019-12-09 4:58 ` Takaaki Ishikawa
2019-12-09 10:39 ` Kyle Meyer
2019-12-09 15:02 ` Takaaki Ishikawa
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
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=874kyeglm7.fsf@kyleam.com \
--to=kyle@kyleam.com \
--cc=emacs-orgmode@gnu.org \
--cc=takaxp@ieee.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 public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.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).