]> code.delx.au - gnu-emacs/blobdiff - src/gnutls.h
Bump version to 24.5 for the release-candidate
[gnu-emacs] / src / gnutls.h
index 4adaad4897d56f352e71a01991fab1f9d0b3a6e1..fd696820aec446926a7801abf56fc01a1e556344 100644 (file)
@@ -1,5 +1,5 @@
 /* GnuTLS glue for GNU Emacs.
-   Copyright (C) 2010-2013 Free Software Foundation, Inc.
+   Copyright (C) 2010-2015 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -57,19 +57,19 @@ typedef enum
   do {                                                         \
     if ((level) <= (max))                                      \
       gnutls_log_function (level, "(Emacs) " string);          \
-  } while (0)
+  } while (false)
 
 #define GNUTLS_LOG2(level, max, string, extra)                 \
   do {                                                         \
     if ((level) <= (max))                                      \
       gnutls_log_function2 (level, "(Emacs) " string, extra);  \
-  } while (0)
+  } while (false)
 
 #define GNUTLS_LOG2i(level, max, string, extra)                        \
   do {                                                         \
     if ((level) <= (max))                                      \
       gnutls_log_function2i (level, "(Emacs) " string, extra); \
-  } while (0)
+  } while (false)
 
 extern ptrdiff_t
 emacs_gnutls_write (struct Lisp_Process *proc, const char *buf, ptrdiff_t nbyte);
@@ -82,8 +82,8 @@ extern void emacs_gnutls_transport_set_errno (gnutls_session_t state, int err);
 #endif
 extern Lisp_Object emacs_gnutls_deinit (Lisp_Object);
 
-extern void syms_of_gnutls (void);
-
 #endif
 
+extern void syms_of_gnutls (void);
+
 #endif