Re: org-ctrl-c-ctrl-c regression

2025-11-01 Thread Ihor Radchenko
Michael Heerdegen writes: >> I am unable to reproduce. Can you try starting from emacs -Q? >> See https://orgmode.org/manual/Feedback.html#Feedback > > Let me see... Ok, this didn't change recently, so it is probably my > own fault. Ok. Closing. Canceled. -- Ihor Radchenko // yantar92, Org mo

Re: org-ctrl-c-ctrl-c regression

2025-10-31 Thread Michael Heerdegen
Ihor Radchenko writes: > > #+begin_src emacs-lisp > > (add-hook 'org-ctrl-c-ctrl-c-final-hook > > #'my-org-ctrl-c-ctrl-c-final-hook-fun) > > ... > > Now, this changed recently: while dispatching is still done when hitting > > C-c C-c, I _additionally_ get > > > > user-error: `C-c C-c'

Re: org-ctrl-c-ctrl-c regression

2025-10-30 Thread Ihor Radchenko
Michael Heerdegen writes: > #+begin_src emacs-lisp > (add-hook 'org-ctrl-c-ctrl-c-final-hook > #'my-org-ctrl-c-ctrl-c-final-hook-fun) > ... > 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 nothi

org-ctrl-c-ctrl-c regression

2025-10-30 Thread Michael Heerdegen
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))) #+en