emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals-release/org bd16944e1b: org-babel-merge-params: Rename


From: ELPA Syncer
Subject: [elpa] externals-release/org bd16944e1b: org-babel-merge-params: Rename plists to alists
Date: Sun, 23 Jun 2024 09:58:27 -0400 (EDT)

branch: externals-release/org
commit bd16944e1ba30d84667e269f072c3b233f2fbffa
Author: Matthias Hetzenberger <mhetzenberger@gmail.com>
Commit: Ihor Radchenko <yantar92@posteo.net>

    org-babel-merge-params: Rename plists to alists
    
    * lisp/ob-core.el (org-babel-merge-params): Rename PLIST(S)
    variables/args to ALIST(S).
    
    TINYCHANGE
---
 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 db75f1f0ad..5b32f503b1 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]