emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 50548fd: cl-fill: Rename arguments to cl-seq and cl


From: Tino Calancha
Subject: [Emacs-diffs] master 50548fd: cl-fill: Rename arguments to cl-seq and cl-item
Date: Sat, 13 Aug 2016 04:29:50 +0000 (UTC)

branch: master
commit 50548fd9afe70c43b3a0c0869f8e889b307ee917
Author: Tino Calancha <address@hidden>
Commit: Tino Calancha <address@hidden>

    cl-fill: Rename arguments to cl-seq and cl-item
    
    * lisp/emacs-lisp/cl-seq.el (cl-fill):
    Rename arguments to 'cl-seq' and 'cl-item' as elsewhere.
---
 lisp/emacs-lisp/cl-seq.el |   18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/lisp/emacs-lisp/cl-seq.el b/lisp/emacs-lisp/cl-seq.el
index 98e5f4e..ed27b7c 100644
--- a/lisp/emacs-lisp/cl-seq.el
+++ b/lisp/emacs-lisp/cl-seq.el
@@ -144,24 +144,24 @@ called.
       cl-accum)))
 
 ;;;###autoload
-(defun cl-fill (seq item &rest cl-keys)
+(defun cl-fill (cl-seq cl-item &rest cl-keys)
   "Fill the elements of SEQ with ITEM.
 \nKeywords supported:  :start :end
 \n(fn SEQ ITEM [KEYWORD VALUE]...)"
   (cl--parsing-keywords ((:start 0) :end) ()
-    (if (listp seq)
-       (let ((p (nthcdr cl-start seq))
+    (if (listp cl-seq)
+       (let ((p (nthcdr cl-start cl-seq))
              (n (if cl-end (- cl-end cl-start) 8000000)))
          (while (and p (>= (setq n (1- n)) 0))
-           (setcar p item)
+           (setcar p cl-item)
            (setq p (cdr p))))
-      (or cl-end (setq cl-end (length seq)))
-      (if (and (= cl-start 0) (= cl-end (length seq)))
-         (fillarray seq item)
+      (or cl-end (setq cl-end (length cl-seq)))
+      (if (and (= cl-start 0) (= cl-end (length cl-seq)))
+         (fillarray cl-seq cl-item)
        (while (< cl-start cl-end)
-         (aset seq cl-start item)
+         (aset cl-seq cl-start cl-item)
          (setq cl-start (1+ cl-start)))))
-    seq))
+    cl-seq))
 
 ;;;###autoload
 (defun cl-replace (cl-seq1 cl-seq2 &rest cl-keys)



reply via email to

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