[BUG] Dynamic blocks not recognized by org-element

2022-04-25 Thread Nick Dokos
Starting with `emacs -Q', I create a simple file with the following contents: --8<---cut here---start->8--- * Clocktable #+BEGIN: clocktable :maxlevel 3 :emphasize nil :scope file #+END: clocktable --8<---cut here---end--->

Re: [the culprit]

2022-04-25 Thread Uwe Brauer
>>> "IR" == Ihor Radchenko writes: > Uwe Brauer writes: >>> But it does not help, org-set-property sets always a new property at the >>> end of the property list. >> >>> Any idea what to do (besides touching the function itself) >> >> >> It seems that the culprit is the function >> org-entry

Re: [PATCH v2 00/38] Final call for comments: Merge org-fold feature branch

2022-04-25 Thread Kévin Le Gouguec
Ihor Radchenko writes: > I think I addressed the raised issues. > Just merged org-fold upstream. 👏 > Kévin Le Gouguec writes: > >> My recipe (based on commit f9dd109bc, Emacs 29.0.50 commit 864c8013fd): >> >> $ git switch feature/org-fold-universal-core-tidy >> $ make autoloads >> $ emacs -Q -

Re: [the culprit] (was: org-set-property (at point)? Save-excursion seems not to work)

2022-04-25 Thread Ihor Radchenko
Uwe Brauer writes: >> But it does not help, org-set-property sets always a new property at the >> end of the property list. > >> Any idea what to do (besides touching the function itself) > > > It seems that the culprit is the function > org-entry-put > which always puts a new entry at the end o

Re: bug#54764: encode-time: make DST and TIMEZONE fields of the list argument optional ones

2022-04-25 Thread Paul Eggert
On 4/25/22 08:37, Paul Eggert wrote: Yes, I plan to omit the patches that were objected to, and install the rest. Once that's done you should be good to go for Org. (Alas my workstation died over the weekend, but I should have things up and running again soon...) Got my workstation up, instal

Re: bug#54764: encode-time: make DST and TIMEZONE fields of the list argument optional ones

2022-04-25 Thread Paul Eggert
Yes, I plan to omit the patches that were objected to, and install the rest. Once that's done you should be good to go for Org. (Alas my workstation died over the weekend, but I should have things up and running again soon...)

Re: bug#54764: encode-time: make DST and TIMEZONE fields of the list argument optional ones

2022-04-25 Thread Max Nikulin
On 21/04/2022 01:29, Paul Eggert wrote: On 4/20/22 08:07, Max Nikulin wrote: I still believe that optional DST and ZONE values is an improvement of the `encode-time' interface with no real drawbacks. Yes, that's the direction we're headed. Paul, a week has passed since you posted the patch

[BUG] org-element--cache: Unregistered buffer modifications detected [9.6 (9.6-??-971eb68 @ /home/zeyrie/.emacs.d/.local/straight/build-28.1/org/)]

2022-04-25 Thread Abilash S
Your bug report will be posted to the Org mailing list. I m working with an org file where I create a java source block and every time I use a snippet I am receiving the following warning and along with it the pointer where t

Re: [PATCH v2 00/38] Final call for comments: Merge org-fold feature branch

2022-04-25 Thread Bastien
Ihor Radchenko writes: > If you confirm, I can just remove the call to `org-fold-reveal'. Yes, I do confirm -- thanks for the quick feedback. -- Bastien

Re: [PATCH v2 00/38] Final call for comments: Merge org-fold feature branch

2022-04-25 Thread Ihor Radchenko
Bastien writes: > Ihor Radchenko writes: > >> I think I addressed the raised issues. >> Just merged org-fold upstream. > > Great! Thanks again for the hard work and the merge. > > One glitch: when refiling an entry to a folded section, the section > gets unfolded. > > Can you reproduce this? L

Re: [PATCH v2 00/38] Final call for comments: Merge org-fold feature branch

2022-04-25 Thread Bastien
Hi Ihor, Ihor Radchenko writes: > I think I addressed the raised issues. > Just merged org-fold upstream. Great! Thanks again for the hard work and the merge. One glitch: when refiling an entry to a folded section, the section gets unfolded. Can you reproduce this? Let me know if you need a

[Bug] Date span failure in agenda w/o day of week in timestamp?

2022-04-25 Thread Russell Adams
Consider this sample file: -- * Test with day of week <2022-04-25 Mon 15:00>--<2022-04-26 Tue 02:00> * Fails w/o DOW, end time at 2100 not 0200 <2022-04-28 21:00>--<2022-04-29 02:00> -- Results in

[the culprit] (was: org-set-property (at point)? Save-excursion seems not to work)

2022-04-25 Thread Uwe Brauer
>>> "UB" == Uwe Brauer writes: > Hi > I tried > (defun my-org-set-property () > (interactive) > (save-excursion > (org-set-property nil nil))) > Or > (defun my-org-set-property () > (interactive) > (save-excursion > (call-interactively #'org-set-property))) > But it does

Re: [PATCH v2 00/38] Final call for comments: Merge org-fold feature branch

2022-04-25 Thread Ihor Radchenko
I think I addressed the raised issues. Just merged org-fold upstream. Kévin Le Gouguec writes: > My recipe (based on commit f9dd109bc, Emacs 29.0.50 commit 864c8013fd): > > $ git switch feature/org-fold-universal-core-tidy > $ make autoloads > $ emacs -Q -L lisp -eval "(setq org-startup-folded

Re: [PATCH v2 00/38] Final call for comments: Merge org-fold feature branch

2022-04-25 Thread Ihor Radchenko
I think I addressed the raised issues. Just merged org-fold upstream. Kévin Le Gouguec writes: > My recipe (based on commit f9dd109bc, Emacs 29.0.50 commit 864c8013fd): > > $ git switch feature/org-fold-universal-core-tidy > $ make autoloads > $ emacs -Q -L lisp -eval "(setq org-startup-folded

org-set-property (at point)? Save-excursion seems not to work

2022-04-25 Thread Uwe Brauer
Hi I tried (defun my-org-set-property () (interactive) (save-excursion (org-set-property nil nil))) Or (defun my-org-set-property () (interactive) (save-excursion (call-interactively #'org-set-property))) But it does not help, org-set-property sets always a new property a