[BUG] org-persist--refresh-gc-lock now showing up after update to 30.1 [9.7.24 (9.7.24-7fa7a5 @ /Users/cchoi/.config/emacs/elpa/org-9.7.24/)]

2025-03-04 Thread Charles Choi
After updating to Emacs 30.1, I now see the error message in *Messages* Error running timer ‘org-persist--refresh-gc-lock’: (wrong-type-argument listp \...) So far running Org seems nominal, but thought I'd report this error message anyways. Remember to cover the basics, that is, what you exp

deltachat inbox bot

2025-03-04 Thread General discussions about Org-mode.
I would like to share a program I made recently. It’s a bot for the Deltachat instant messenger (https://delta.chat/) that interacts with an org-mode file. The bot basically just listens to incoming messages, and transfer the contents (as well as attachments) to a headline in a designated org-mode

Re: Since Emacs 30.1, commenting lines in code blocs does not work correctly

2025-03-04 Thread General discussions about Org-mode.
Le 04/03/25 à 10h48, David Masterson a écrit : > 2. When you select the region, where is the cursor? Let me answer this question first: in my above experiment, the cursor is at the very beginning of the 4th line. > 1. What's the difference between comment-region and comment-line? - With the cu

Re: [BUG] Incorrect LaTeX export when using images in a table to display them side-by-side. [9.7.5 (release_9.7.5 @ /home/dadinn/.emacs.d/straight/build/org/)]

2025-03-04 Thread Pedro Andres Aranda Gutierrez
Hi, good to know. So, is there any other case apart that we should look at before deciding if the quick patch I prepared is good enough? Or should I start preparing the test case? Best, /PA On Tue, 4 Mar 2025 at 19:57, Ihor Radchenko wrote: > Pedro Andres Aranda Gutierrez writes: > > > This

Re: Org publishing and ox-rss.el

2025-03-04 Thread Jonathan Gregory
Hi Fabio, On 03 Mar 2025, Fabio Natali wrote: Dear All, I've got a little static website that gets built with the Org publishing system. Recently I've been looking at ways to add a full-text RSS feed with ox-rss.el[0]. [...] There's a couple of things that I'm not sure about. My main con

Re: [BUG] Incorrect LaTeX export when using images in a table to display them side-by-side. [9.7.5 (release_9.7.5 @ /home/dadinn/.emacs.d/straight/build/org/)]

2025-03-04 Thread Ihor Radchenko
Pedro Andres Aranda Gutierrez writes: > This markup > > | file:test-small.png | file:test-small.png | > > produces > > #+BEGIN_SRC latex > This would be a table with inlined images: > > \begin{center} > \begin{tabular}{ll} > \includegraphics{test-small.png} & \includegraphics{test-small.png}\

Re: Since Emacs 30.1, commenting lines in code blocs does not work correctly

2025-03-04 Thread David Masterson
Denis Bitouzé via "General discussions about Org-mode." writes: > * Context > > - GNU Emacs 30.1 > - Org mode version 9.7.11 > > * Problem > > Since Emacs 30.1, commenting lines in code blocs does not work > correctly. As an example, run: > > emacs -Q test.org > > where test.org has the following

Re: Since Emacs 30.1, commenting lines in code blocs does not work correctly

2025-03-04 Thread Rens Oliemans
I see slightly different but still weird behaviour. When selecting the entirety of lines 2 and 3, and run M-x comment-region, I get this: #+BEGIN_SRC emacs-lisp ;; (defun org-xor (a b) ;; "Exclusive or." ;; ( if a (not b) b)) #+END_SRC Versions: GNU Emacs 29.4 (build 1, x86_64-pc-linux-

Re: Since Emacs 30.1, commenting lines in code blocs does not work correctly

2025-03-04 Thread Michal Politowski
Dnia Tue, 4 Mar 2025 11:28:42 +0100, Denis Bitouzé via General discussions about Org-mode. napisał(a): > Hi, > > * Context > > - GNU Emacs 30.1 > - Org mode version 9.7.11 > > * Problem > > Since Emacs 30.1, commenting lines in code blocs does not work > correctly. As an example, run: > > em

Since Emacs 30.1, commenting lines in code blocs does not work correctly

2025-03-04 Thread General discussions about Org-mode.
Hi, * Context - GNU Emacs 30.1 - Org mode version 9.7.11 * Problem Since Emacs 30.1, commenting lines in code blocs does not work correctly. As an example, run: emacs -Q test.org where test.org has the following content --8<---cut here---start->8--- #+BEGI