* dgnushack.el (mapcon): Bind the 1st arg `fn' as a temp var.
(subrp (symbol-function 'mapcon)))
form
(if rest
- `(let (res
+ `(let ((fn ,fn)
+ res
(args (list ,seq ,@rest))
p)
(while (not (memq nil args))
(setcar p (cdr (pop p)))
))
(apply (function nconc) (nreverse res)))
- `(let (res
+ `(let ((fn ,fn)
+ res
(arg ,seq))
(while arg
(push (funcall ,fn arg) res)
(defconst gnus-version-number "6.14.0"
"Version number for this version of gnus.")
-(defconst gnus-revision-number "13"
+(defconst gnus-revision-number "14"
"Revision number for this version of gnus.")
(defconst gnus-original-version-number "5.8.2"