* [PATCH] lisp/lisp/ob-core.el (org-babel-merge-params): Rename plists to alists
@ 2024-06-22 14:20 Matthias Hetzenberger
2024-06-23 9:14 ` Ihor Radchenko
0 siblings, 1 reply; 2+ messages in thread
From: Matthias Hetzenberger @ 2024-06-22 14:20 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 222 bytes --]
Hello!
I noticed that in the function org-babel-merge-params the arguments are
alists rather than plists.
To this end, I created a patch that updates the relevant variable names as
well as the docstring (see attachment).
[-- Attachment #1.2: Type: text/html, Size: 436 bytes --]
[-- Attachment #2: 0001-org-babel-merge-params-Rename-plists-to-alists.patch --]
[-- Type: text/x-patch, Size: 1395 bytes --]
From db9d5b77aedfb87aa0a3382f6be9d5921eef2ffd Mon Sep 17 00:00:00 2001
From: Matthias Hetzenberger <mhetzenberger@gmail.com>
Date: Sat, 22 Jun 2024 16:06:41 +0200
Subject: [PATCH] org-babel-merge-params: Rename plists to alists
---
lisp/ob-core.el | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/lisp/ob-core.el b/lisp/ob-core.el
index db75f1f0a..5b32f503b 100644
--- a/lisp/ob-core.el
+++ b/lisp/ob-core.el
@@ -2959,9 +2959,9 @@ used as a string to be appended to #+begin_example line."
(goto-char body-start)
(insert body))))
-(defun org-babel-merge-params (&rest plists)
- "Combine all parameter association lists in PLISTS.
-Later elements of PLISTS override the values of previous elements.
+(defun org-babel-merge-params (&rest alists)
+ "Combine all parameter association lists in ALISTS.
+Later elements of ALISTS override the values of previous elements.
This takes into account some special considerations for certain
parameters when merging lists."
(let* ((results-exclusive-groups
@@ -2990,8 +2990,8 @@ parameters when merging lists."
;; Some keywords accept multiple values. We need to treat
;; them specially.
vars results exports)
- (dolist (plist plists)
- (dolist (pair plist)
+ (dolist (alist alists)
+ (dolist (pair alist)
(pcase pair
(`(:var . ,value)
(let ((name (cond
--
2.45.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-06-23 9:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-22 14:20 [PATCH] lisp/lisp/ob-core.el (org-babel-merge-params): Rename plists to alists Matthias Hetzenberger
2024-06-23 9:14 ` Ihor Radchenko
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).