lisp/net/gnutls.el (gnutls-errorp): Declare before first use.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 25 Apr 2011 13:47:23 +0000 (15:47 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 25 Apr 2011 13:47:23 +0000 (15:47 +0200)
lisp/ChangeLog
lisp/net/gnutls.el

index c4e28b6..917fe6c 100644 (file)
@@ -1,9 +1,13 @@
+2011-04-25  Juanma Barranquero  <lekktu@gmail.com>
+
+       * net/gnutls.el (gnutls-errorp): Declare before first use.
+
 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
 
        * 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 <claudio.bley@gmail.com>.
        (open-gnutls-stream): Add usage example.
 
@@ -13,8 +17,8 @@
 
 2011-04-24  Daniel Colascione <dan.colascione@gmail.com>
 
-       * 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  <cyd@stupidchicken.com>
 
index 46c20e6..8b66279 100644 (file)
@@ -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)