From: Lars Magne Ingebrigtsen Date: Sun, 26 Sep 2010 15:30:44 +0000 (+0200) Subject: (starttls-negotiate): Avoid the cl.el decf function. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~47^2~42^2~7 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6303aba12277fcac6a597908fb047560cf7c0c3e;p=emacs.git (starttls-negotiate): Avoid the cl.el decf function. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9219c7c4446..50fdd4bc54e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2010-09-26 Lars Magne Ingebrigtsen + * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function. + * net/netrc.el (netrc-store-data): New function. 2010-09-26 Teodor Zlatanov diff --git a/lisp/net/gnutls.el b/lisp/net/gnutls.el index b4fa4f08385..7a2571f8a7c 100644 --- a/lisp/net/gnutls.el +++ b/lisp/net/gnutls.el @@ -82,7 +82,7 @@ CREDENTIALS-FILE is a filename with meaning dependent on CREDENTIALS." (n 25000)) (while (and (not (gnutls-error-fatalp ret)) (> n 0)) - (decf n) + (setq n (1- n)) (gnutls-message-maybe (setq ret (gnutls-handshake proc)) "handshake: %s")