projects
/
elisp
/
gnus.git-
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b44f00e
)
(mapcon, mapc): Eliminate the redundant code.
author
yamaoka
<yamaoka>
Fri, 10 Dec 1999 06:57:43 +0000
(06:57 +0000)
committer
yamaoka
<yamaoka>
Fri, 10 Dec 1999 06:57:43 +0000
(06:57 +0000)
lisp/dgnushack.el
patch
|
blob
|
history
diff --git
a/lisp/dgnushack.el
b/lisp/dgnushack.el
index
17fd114
..
8aec2e5
100644
(file)
--- a/
lisp/dgnushack.el
+++ b/
lisp/dgnushack.el
@@
-58,7
+58,7
@@
(if rest
`(let* ((fn ,fn)
(seq ,seq)
- (args (cons seq (list ,@rest)))
+ (args (list seq ,@rest))
(m (apply (function min) (mapcar (function length) args)))
(n 0))
(while (< n m)
@@
-97,7
+97,7
@@
form
(if rest
`(let (res
- (args (cons ,seq (list ,@rest)))
+ (args (list ,seq ,@rest))
p)
(while (not (memq nil args))
(push (apply ,fn args) res)