Re: [PATCH] lisp/ob-scheme.el

2023-04-29 Thread Zelphir Kaltstahl
On 4/25/23 14:28, Ihor Radchenko wrote: Zelphir Kaltstahl writes: Subject: [PATCH] org-babel-expand-body:scheme: define header arg vars using define Applied, onto main, adding TINYCHANGE cookie and newline between variable definitions and body.

Re: [PATCH] lisp/ob-scheme.el

2023-04-25 Thread Ihor Radchenko
Zelphir Kaltstahl writes: > Subject: [PATCH] org-babel-expand-body:scheme: define header arg vars using > define Applied, onto main, adding TINYCHANGE cookie and newline between variable definitions and body. https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=d97ba5ba5 You are

Re: [PATCH] lisp/ob-scheme.el

2023-03-26 Thread Ihor Radchenko
Zelphir Kaltstahl writes: >>> + "Expand :var header arguments given as VARS." >>> + (mapconcat >>> + (lambda (var) >>> + (format "(define %s %S)" (car var) (cdr var))) >> Is there any reason why you use %s for variable name? Previously it was >> formatted with escapes (using %S). > >

Re: [PATCH] lisp/ob-scheme.el

2023-03-25 Thread Zelphir Kaltstahl
elphir Kaltstahl Date: Sat, 18 Mar 2023 16:06:05 +0100 Subject: [PATCH] lisp/ob-scheme.el: Please provide a short commit summary, not just the changed file. See how we do it inhttps://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/ Oh, I thought I had one. Not sure how I lost my commit messag

Re: [PATCH] lisp/ob-scheme.el

2023-03-22 Thread Ihor Radchenko
Mon Sep 17 00:00:00 2001 > From: Zelphir Kaltstahl > Date: Sat, 18 Mar 2023 16:06:05 +0100 > Subject: [PATCH] lisp/ob-scheme.el: Please provide a short commit summary, not just the changed file. See how we do it in https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/ > Wrapping binding

[PATCH] lisp/ob-scheme.el

2023-03-19 Thread Zelphir Kaltstahl
stahl From 51b299aa18e882681dd681acb51c9cb1b44f3b4e Mon Sep 17 00:00:00 2001 From: Zelphir Kaltstahl Date: Sat, 18 Mar 2023 16:06:05 +0100 Subject: [PATCH] lisp/ob-scheme.el: * ob-scheme.el (org-babel-expand-body:scheme, org-babel-expand-header-arg-vars:scheme): Change the way header argument :var variables are expanded for