Hi,
something in `org-ctrl-c-ctrl-c' changed (to the worse) recently. I am
using this:
#+begin_src emacs-lisp
(add-hook 'org-ctrl-c-ctrl-c-final-hook
#'my-org-ctrl-c-ctrl-c-final-hook-fun)
(defun my-org-ctrl-c-ctrl-c-final-hook-fun ()
(save-buffer)
(org-export-dispatch '(4)))
#+end_src
I think the intent is clear, and it used to work as intended.
Now, this changed recently: while dispatching is still done when hitting
C-c C-c, I _additionally_ get
user-error: `C-c C-c' can do nothing useful here
I don't think this is intended...?
TIA,
Michael.