Re: [BUG] loading ol-gnus returns an error [9.5 (release_9.5-194-gdb302d @ /home/oub/emacs/site-lisp/packages/org/)]

2022-02-05 Thread Ihor Radchenko
Uwe Brauer writes: > Running a more or less recent master commit of org-mode and GNU emacs > when loading the ol-gnus file I receive the following error > > > Debugger entered--Lisp error: (void-variable file) > (load file "/home/oub/emacs/site-lisp/packages/org/ol-gnus.el") > eval((load file

[SOLVED] (was: [BUG] loading ol-gnus returns an error [9.5 (release_9.5-194-gdb302d @ /home/oub/emacs/site-lisp/packages/org/)])

2022-02-05 Thread Uwe Brauer
>>> "IR" == Ihor Radchenko writes: > Uwe Brauer writes: >> Running a more or less recent master commit of org-mode and GNU emacs >> when loading the ol-gnus file I receive the following error >> >> >> Debugger entered--Lisp error: (void-variable file) >> (load file "/home/oub/emacs/site-lisp/p

Re: [BUG] org-bibtex-yank does not recognise bibtex entry [9.6 (9.6-??-e7ea951 ]

2022-02-05 Thread Ihor Radchenko
Günter Lichtenberg writes: > In short: > Expected: Bibtex text is yanked as an orgmode entry > Actually Happening: Error thrown, nothing yanked Thanks for the report! Fixed on bugfix via 7543da99. Best, Ihor

Re: Problem with org-babel and geiser

2022-02-05 Thread Ihor Radchenko
Bob Heffernan writes: > Thank you for your response. > The patch you linked does seem to be intended to fix this issue. > > However, I have no experience with applying a patch (to Emacs or anything > else). > On my system, ob-scheme.el.gz can be found at > /usr/share/emacs/27.2/lisp/org > can I

Lazy load of org-protocol

2022-02-05 Thread Max Nikulin
Hi. I would prefer to avoid (require 'org-protocol) in emacs init file and to postpone loading till invocation of emacsclient with org-protocol URI. The problem is a hack in org-protocol. URIs are actually treated as (relative) file names and magic is achieved in an advice for `server-vis

Re: Shell SRC blocks under Windows

2022-02-05 Thread H. Dieter Wilhelm
Michael Powe writes: > On 2/4/2022 15:15, H. Dieter Wilhelm wrote: >> Hello >> >> I installed the software distribution MSYS2 https://www.msys2.org/. And >> I'd like to call its various shells in org src blocks. First I tried to >> set explicit-shell-file-name but then my LaTeX exports don't wo

[PATCH] org-agenda: Skip formatting if format string is ""

2022-02-05 Thread Samim Pezeshki
Hi! I had contributed a patch which was merged at commit 90a9ee17410a4b6663f5957c653258e9f9418d7d . This commit prevents having extra spaces when the TODO format string is an empty string (""). It was not working properly, with this patch now it works correctly. Attached is the screenshot of th

Re: [BUG] org-bibtex-yank does not recognise bibtex entry [9.6 (9.6-??-e7ea951 ]

2022-02-05 Thread Günter Lichtenberg
Ihor Radchenko writes: > Günter Lichtenberg writes: > >> In short: >> Expected: Bibtex text is yanked as an orgmode entry >> Actually Happening: Error thrown, nothing yanked > > Thanks for the report! > Fixed on bugfix via 7543da99. Great! Can confirm it works again. Thanks a lot! gl – Günter

Re: Lazy load of org-protocol

2022-02-05 Thread Jim Porter
On 2/5/2022 3:54 AM, Max Nikulin wrote: I would prefer to avoid    (require 'org-protocol) in emacs init file and to postpone loading till invocation of emacsclient with org-protocol URI. The problem is a hack in org-protocol. URIs are actually treated as (relative) file names and magic is a

[9.5.2] [org-keys] [cursor keys with modifiers] ESC missing?

2022-02-05 Thread R Primus
Sat 5 Feb 2022 16:03:31 GMT Hi, Ref: https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-keys.el#n463 For `(org-defkey org-mode-map (kbd "ESC ") #'org-metaleft)`, just wondering if: 1. this was intentionally left out, and 2. if so, what is the reason? This causes user `surpr

Re: Suggestion: convert dispatchers to use transient

2022-02-05 Thread João Pedro de Amorim Paula
On 04 February 2022 08:30, Tim Cross wrote: > I'm assuming it is, but I have to admit I'm still not 100% clear on > how Emacs handles the situation where you use a library that is both > built-in and available in ELPA. Does Emacs use the latest version > available or does it use the built-in vers

Re: Problem with org-babel and geiser

2022-02-05 Thread Bob Heffernan
On 22-02-05 19:39, Ihor Radchenko wrote: > It's not a good idea to modify Org packaged together with Emacs. For > testing, you can just use the attached version of ob-scheme.el. Load > your Emacs and Org mode, open the attached ob-scheme.el, and run M-x > eval-buffer. That should be sufficient to t

Re: Shell SRC blocks under Windows

2022-02-05 Thread Matt
On Sat, 05 Feb 2022 10:48:02 -0500 H. Dieter Wilhelm wrote > >> Is is it possible to extend org-mode's src blocks with > >> org-babel-shell-names to use either MSYS2 or MinGW shells (instead of > >> cmd.exe)? Unfortunately ob-shell.el doesn't guide me further and I > >> can't f

Re: Suggestion: convert dispatchers to use transient

2022-02-05 Thread Samuel Wales
jus want to state the obvious here in case it is useful [but everybody probbly lready knows] --- not everybody uses packages or maybe trusts them has internet etc. On 2/5/22, João Pedro de Amorim Paula wrote: > On 04 February 2022 08:30, Tim Cross wrote: > >> I'm assuming it is, but I have to ad

[PATCH] org-list-send-item: allow dest to be a buffer position

2022-02-05 Thread Sacha Chua
Passing an integer representing a buffer position to org-list-send-item was failing because of the string-match-p, so here's something that lets integers skip that part. I have copyright assignment papers on file. Sacha lisp/org-lis

Re: Suggestion: convert dispatchers to use transient

2022-02-05 Thread João Pedro de Amorim Paula
On 05 February 2022 18:49, Samuel Wales wrote: > jus want to state the obvious here in case it is useful [but everybody > probbly lready knows] --- not everybody uses packages or maybe trusts > them has internet etc. Indeed! What I posted assumes using packages, but they also work with any packa

Re: Lazy load of org-protocol (Max Nikulin)

2022-02-05 Thread Tianshu Wang
and-execute(eval-last-sexp) > >> When does the error occur? Judging from the backtrace, you tried to >> evaluate some kind of elisp expression manually with eval-last-sexp. The >> expression appears to be >> (load file "/home/oub/emacs/site-lisp/packages/org/ol-gnus.el") &