From: Juanma Barranquero Date: Mon, 25 Apr 2011 13:47:23 +0000 (+0200) Subject: lisp/net/gnutls.el (gnutls-errorp): Declare before first use. X-Git-Url: https://git.hcoop.net/bpt/emacs.git/commitdiff_plain/cd22b309b432f65d0191e46a7677e0d9c11ea9fd?hp=42ce4c631e0d9291399dac0e9787ce2fbb97c8eb lisp/net/gnutls.el (gnutls-errorp): Declare before first use. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c4e28b6158..917fe6cf40 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,9 +1,13 @@ +2011-04-25 Juanma Barranquero + + * net/gnutls.el (gnutls-errorp): Declare before first use. + 2011-04-24 Teodor Zlatanov * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags, verify-error, and verify-hostname-error parameters. Check whether - default trustfile exists before going to use it. Add missing - argument to gnutls-message-maybe call. Return return value. + default trustfile exists before going to use it. Add missing + argument to gnutls-message-maybe call. Return return value. Reported by Claudio Bley . (open-gnutls-stream): Add usage example. @@ -13,8 +17,8 @@ 2011-04-24 Daniel Colascione - * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Use - correct match group (bug#8438). + * progmodes/cc-engine.el (c-forward-decl-or-cast-1): + Use correct match group (bug#8438). 2011-04-24 Chong Yidong diff --git a/lisp/net/gnutls.el b/lisp/net/gnutls.el index 46c20e6b34..8b66279566 100644 --- a/lisp/net/gnutls.el +++ b/lisp/net/gnutls.el @@ -83,6 +83,7 @@ trust and key files, and priority string." 'error-message "GnuTLS error") (declare-function gnutls-boot "gnutls.c" (proc type proplist)) +(declare-function gnutls-errorp "gnutls.c" (error)) (defun gnutls-negotiate (proc type hostname &optional priority-string trustfiles keyfiles verify-flags @@ -157,7 +158,6 @@ defaults to GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT." proc)) -(declare-function gnutls-errorp "gnutls.c" (error)) (declare-function gnutls-error-string "gnutls.c" (error)) (defun gnutls-message-maybe (doit format &rest params)