diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2004-05-28 19:07:57 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2004-05-28 19:07:57 +0000 |
commit | 1703d649a7ef3303239c039665f6014d56c5ce6b (patch) | |
tree | 31eea2d91368fbb8c50e56d0d430df762c0895d3 /lisp/cvs-status.el | |
parent | 3127aa131a497cc8ace13daca07f7c95c490a9dd (diff) | |
download | emacs-1703d649a7ef3303239c039665f6014d56c5ce6b.tar.gz |
(cvs-tree-merge, cvs-tags->tree): Use `butlast', not `cvs-butlast'.
Diffstat (limited to 'lisp/cvs-status.el')
-rw-r--r-- | lisp/cvs-status.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cvs-status.el b/lisp/cvs-status.el index 96b1f1eb066..b03182d87e4 100644 --- a/lisp/cvs-status.el +++ b/lisp/cvs-status.el @@ -277,10 +277,10 @@ BEWARE: because of stability issues, this is not a symetric operation." (cvs-tree-merge (cdr tree1) (cdr tree2)))))) ((> l1 l2) (cvs-tree-merge - (list (cons (cvs-tag-make (cvs-butlast vl1)) tree1)) tree2)) + (list (cons (cvs-tag-make (butlast vl1)) tree1)) tree2)) ((< l1 l2) (cvs-tree-merge - tree1 (list (cons (cvs-tag-make (cvs-butlast vl2)) tree2))))))))) + tree1 (list (cons (cvs-tag-make (butlast vl2)) tree2))))))))) (defun cvs-tag-make-tag (tag) (let ((vl (mapcar 'string-to-number (split-string (nth 2 tag) "\\.")))) @@ -293,7 +293,7 @@ BEWARE: because of stability issues, this is not a symetric operation." (lambda (tag) (let ((tag (cvs-tag-make-tag tag))) (list (if (not (eq (cvs-tag->type tag) 'branch)) tag - (list (cvs-tag-make (cvs-butlast (cvs-tag->vlist tag))) + (list (cvs-tag-make (butlast (cvs-tag->vlist tag))) tag))))) tags))) (while (cdr tags) |