]> code.delx.au - gnu-emacs/commitdiff
* gnutls.c, gnutls.h (emacs_gnutls_record_check_pending):
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 13 Dec 2013 03:44:59 +0000 (19:44 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 13 Dec 2013 03:44:59 +0000 (19:44 -0800)
Return ptrdiff_t, not int, since it's a buffer size.
Reindent/reparen some macros to a more Gnuish style.

src/ChangeLog
src/gnutls.c
src/gnutls.h

index 7bbcb345a0f0fb3187682c64c2eeaf699687118e..0ffa9af77fc0f7815e99bfb49e478fbb6d2055c1 100644 (file)
@@ -1,3 +1,9 @@
+2013-12-13  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * gnutls.c, gnutls.h (emacs_gnutls_record_check_pending):
+       Return ptrdiff_t, not int, since it's a buffer size.
+       Reindent/reparen some macros to a more Gnuish style.
+
 2013-12-12  Paul Eggert  <eggert@cs.ucla.edu>
 
        Avoid undefined behavior with huge regexp interval counts.
index 9ea3f59100d9c50f428edfa3457f9c66cc6e89f1..105e5071ed7b282f532d75884e63fca9f4fb5ea7 100644 (file)
@@ -365,7 +365,7 @@ emacs_gnutls_handshake (struct Lisp_Process *proc)
   return ret;
 }
 
-int
+ptrdiff_t
 emacs_gnutls_record_check_pending (gnutls_session_t state)
 {
   return fn_gnutls_record_check_pending (state);
index 0f648dbd81c37e05d616c94932258f1d1749944a..4adaad4897d56f352e71a01991fab1f9d0b3a6e1 100644 (file)
@@ -45,25 +45,38 @@ typedef enum
   GNUTLS_STAGE_READY
 } gnutls_initstage_t;
 
-#define GNUTLS_EMACS_ERROR_NOT_LOADED GNUTLS_E_APPLICATION_ERROR_MIN + 1
+#define GNUTLS_EMACS_ERROR_NOT_LOADED (GNUTLS_E_APPLICATION_ERROR_MIN + 1)
 #define GNUTLS_EMACS_ERROR_INVALID_TYPE GNUTLS_E_APPLICATION_ERROR_MIN
 
 #define GNUTLS_INITSTAGE(proc) (XPROCESS (proc)->gnutls_initstage)
 
-#define GNUTLS_PROCESS_USABLE(proc) (GNUTLS_INITSTAGE(proc) >= GNUTLS_STAGE_READY)
+#define GNUTLS_PROCESS_USABLE(proc) \
+  (GNUTLS_INITSTAGE (proc) >= GNUTLS_STAGE_READY)
 
-#define GNUTLS_LOG(level, max, string) do { if (level <= max) { gnutls_log_function (level, "(Emacs) " string); } } while (0)
+#define GNUTLS_LOG(level, max, string)                         \
+  do {                                                         \
+    if ((level) <= (max))                                      \
+      gnutls_log_function (level, "(Emacs) " string);          \
+  } while (0)
 
-#define GNUTLS_LOG2(level, max, string, extra) do { if (level <= max) { gnutls_log_function2 (level, "(Emacs) " string, extra); } } while (0)
+#define GNUTLS_LOG2(level, max, string, extra)                 \
+  do {                                                         \
+    if ((level) <= (max))                                      \
+      gnutls_log_function2 (level, "(Emacs) " string, extra);  \
+  } while (0)
 
-#define GNUTLS_LOG2i(level, max, string, extra) do { if (level <= max) { gnutls_log_function2i (level, "(Emacs) " string, extra); } } while (0)
+#define GNUTLS_LOG2i(level, max, string, extra)                        \
+  do {                                                         \
+    if ((level) <= (max))                                      \
+      gnutls_log_function2i (level, "(Emacs) " string, extra); \
+  } while (0)
 
 extern ptrdiff_t
 emacs_gnutls_write (struct Lisp_Process *proc, const char *buf, ptrdiff_t nbyte);
 extern ptrdiff_t
 emacs_gnutls_read (struct Lisp_Process *proc, char *buf, ptrdiff_t nbyte);
 
-extern int emacs_gnutls_record_check_pending (gnutls_session_t state);
+extern ptrdiff_t emacs_gnutls_record_check_pending (gnutls_session_t state);
 #ifdef WINDOWSNT
 extern void emacs_gnutls_transport_set_errno (gnutls_session_t state, int err);
 #endif