# HG changeset patch # User Juanma Barranquero # Date 1286110324 -7200 # Node ID ab7396ada96a1ec62f383569291a6f076654f4dc # Parent c6fdea2b097e1a7ecc73cfa75c2048ace75f34f2 src/gnutls.c: Fix typo in docstring. diff -r c6fdea2b097e -r ab7396ada96a src/gnutls.c --- a/src/gnutls.c Sun Oct 03 14:43:12 2010 +0200 +++ b/src/gnutls.c Sun Oct 03 14:52:04 2010 +0200 @@ -218,7 +218,7 @@ } DEFUN ("gnutls-deinit", Fgnutls_deinit, Sgnutls_deinit, 1, 1, 0, - doc: /* Deallocate GNU TLS resources associated with process PROC. + doc: /* Deallocate GnuTLS resources associated with process PROC. See also `gnutls-init'. */) (Lisp_Object proc) { @@ -236,8 +236,8 @@ return Qt; } -/* Initializes global GNU TLS state to defaults. -Call `gnutls-global-deinit' when GNU TLS usage is no longer needed. +/* Initializes global GnuTLS state to defaults. +Call `gnutls-global-deinit' when GnuTLS usage is no longer needed. Returns zero on success. */ static Lisp_Object gnutls_emacs_global_init (void) @@ -252,7 +252,7 @@ return gnutls_make_error (ret); } -/* Deinitializes global GNU TLS state. +/* Deinitializes global GnuTLS state. See also `gnutls-global-init'. */ static Lisp_Object gnutls_emacs_global_deinit (void)