summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2010-10-03 14:52:04 +0200
committerJuanma Barranquero <lekktu@gmail.com>2010-10-03 14:52:04 +0200
commite1b69165cca0ba5012a54c249589d544247217c3 (patch)
tree49fd56154bd294390f6392d1b59bfef01ac12b29
parentb39e244605c1522874860442120697d04ab19051 (diff)
downloademacs-e1b69165cca0ba5012a54c249589d544247217c3.tar.gz
src/gnutls.c: Fix typo in docstring.
-rw-r--r--src/gnutls.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gnutls.c b/src/gnutls.c
index d49f0b27655..f765abe92e8 100644
--- a/src/gnutls.c
+++ b/src/gnutls.c
@@ -218,7 +218,7 @@ usage: (gnutls-error-string ERROR) */)
}
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 @@ See also `gnutls-init'. */)
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 @@ gnutls_emacs_global_init (void)
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)