Quit and Error in org-export--dispatch-action

2019-12-04 Thread Takaaki Ishikawa
Dear Nicolas and all, The org-export provides a quitting option for user by typing `q`. This is nice feature but it is implemented with an error function. For me, it is not actually an error, it is one of the user actions, and when `debug-on-error` is `t`, the Backtrace buffer will be popped up ev

Re: Quit and Error in org-export--dispatch-action

2019-12-05 Thread Kyle Meyer
Hi Takaaki, Takaaki Ishikawa writes: > The org-export provides a quitting option for user by typing `q`. > This is nice feature but it is implemented with an error function. > For me, it is not actually an error, it is one of the user actions, > and when `debug-on-error` is `t`, the Backtrace bu

Re: Quit and Error in org-export--dispatch-action

2019-12-05 Thread Takaaki Ishikawa
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

Re: Quit and Error in org-export--dispatch-action

2019-12-05 Thread Kyle Meyer
Takaaki Ishikawa 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

Re: Quit and Error in org-export--dispatch-action

2019-12-08 Thread Takaaki Ishikawa
Dear Kyle and all, Thank you for your kind feedback. > 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

Re: Quit and Error in org-export--dispatch-action

2019-12-09 Thread Kyle Meyer
Takaaki Ishikawa writes: [...] > I created a patch for this issue. Please find an attached patch. Thanks! Applied in c7ad3f884 (with minor cosmetic tweaks to the commit message). > It is a really tiny patch. But I have already signed the copyright > assignment with FSF. Great, I've added you

Re: Quit and Error in org-export--dispatch-action

2019-12-09 Thread Takaaki Ishikawa
Dear Kyle, Confirmed. Thanks! Best, Takaaki 2019年12月9日(月) 19:39 Kyle Meyer : > > Takaaki Ishikawa writes: > > [...] > > > I created a patch for this issue. Please find an attached patch. > > Thanks! Applied in c7ad3f884 (with minor cosmetic tweaks to the commit > message). > > > It is a reall