Re: The git repo for contrib packages

2021-06-30 Thread Greg Minshall
Vikas, i *believe* this to be the current org-contrib repo https://git.sr.ht/~bzg/org-contrib cheers, Greg

Re: [PATCH] Fix timestamp agenda setting global agenda name [9.4.6]

2021-06-30 Thread Nicolas Goaziou
Hello, Ingo Lohmar writes: > Subject: [PATCH] Fix timestamp agenda setting global agenda name > > * lisp/org.el (org-follow-timestamp-link): Do not set global agenda name > > The tmp value for the agenda buffer name is used in `org-agenda-list' > to set `org-agenda-buffer-name'. Wrap the call

[PATCH] Fix timestamp agenda setting global agenda name [9.4.6]

2021-06-30 Thread Ingo Lohmar
Dear All, a few weeks ago, I reported the original bug with a minimal complete example in https://lists.gnu.org/archive/html/emacs-orgmode/2021-05/msg00757.html My first patch attempt was wrongly based on the master branch, see

BUG: org-lint false missing arguments for macro with optional arguments

2021-06-30 Thread Michael Dauer
Hi, If I did not miss it there is no way to specify arguments as optional for a macro definition. I've the following: (defun ct-action-plan ( up recently-done) ... (push '("action_plan" . "(eval (ct-action-plan $1 $2))") org-export-global-macros) The arguments of the function are specified as

Re: Bug: ODT export of Chinese text inserts spaces for line breaks

2021-06-30 Thread Maxim Nikulin
On 29/06/2021 10:47, James Harkins wrote: * Test 1本人不想亲自拿到学历学位证书、急于离校者,可书面委托他人代领学历学位证 书,29日起即可离校;2本人想亲自领取学历学位证书者,按学校规定的程序及有关 要求办理离校手续,领取相关证书后离校; Exporting to ODT produces the following (body text, omitting titles, headers and such). 1本人不想亲自拿到学历学位证书、急于离校者,可书面委托他人代领学历学位证

Re: [PATCH] Change default latex compiler to latexmk

2021-06-30 Thread Bruce D'Arcus
Looks good, Bastien, and I think reflects the consensus of that thread. But trying just now, I'm not able to apply the patch on my local repo for whatever reason, so haven't tested it. On Wed, Jun 30, 2021 at 6:48 AM Bastien wrote: > > Hi Bruce, > > "Bruce D'Arcus" writes: > > > What's the

Re: [PATCH] Change default latex compiler to latexmk

2021-06-30 Thread Bastien
Hi Bruce, "Bruce D'Arcus" writes: > What's the status of this patch? Can you quickly review it and say whether it's good? Thanks, -- Bastien

BUG: org-lint reports macros defined in org-export-global-macros as undefined

2021-06-30 Thread Michael Dauer
Hi, I have a lot of global macros defined in org-export-global-macros. Wherever they are used in my org files org-lint reports them as undefined. It seems that org-lint just checks against org-macro-templates (collected with (org-macro-initialize-templates)) and a few default macros. I'm going