diff options
| author | Juanma Barranquero | 2010-10-03 14:52:04 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-10-03 14:52:04 +0200 |
| commit | e1b69165cca0ba5012a54c249589d544247217c3 (patch) | |
| tree | 49fd56154bd294390f6392d1b59bfef01ac12b29 /src | |
| parent | b39e244605c1522874860442120697d04ab19051 (diff) | |
| download | emacs-e1b69165cca0ba5012a54c249589d544247217c3.tar.gz emacs-e1b69165cca0ba5012a54c249589d544247217c3.zip | |
src/gnutls.c: Fix typo in docstring.
Diffstat (limited to 'src')
| -rw-r--r-- | src/gnutls.c | 8 |
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) */) | |||
| 218 | } | 218 | } |
| 219 | 219 | ||
| 220 | DEFUN ("gnutls-deinit", Fgnutls_deinit, Sgnutls_deinit, 1, 1, 0, | 220 | DEFUN ("gnutls-deinit", Fgnutls_deinit, Sgnutls_deinit, 1, 1, 0, |
| 221 | doc: /* Deallocate GNU TLS resources associated with process PROC. | 221 | doc: /* Deallocate GnuTLS resources associated with process PROC. |
| 222 | See also `gnutls-init'. */) | 222 | See also `gnutls-init'. */) |
| 223 | (Lisp_Object proc) | 223 | (Lisp_Object proc) |
| 224 | { | 224 | { |
| @@ -236,8 +236,8 @@ See also `gnutls-init'. */) | |||
| 236 | return Qt; | 236 | return Qt; |
| 237 | } | 237 | } |
| 238 | 238 | ||
| 239 | /* Initializes global GNU TLS state to defaults. | 239 | /* Initializes global GnuTLS state to defaults. |
| 240 | Call `gnutls-global-deinit' when GNU TLS usage is no longer needed. | 240 | Call `gnutls-global-deinit' when GnuTLS usage is no longer needed. |
| 241 | Returns zero on success. */ | 241 | Returns zero on success. */ |
| 242 | static Lisp_Object | 242 | static Lisp_Object |
| 243 | gnutls_emacs_global_init (void) | 243 | gnutls_emacs_global_init (void) |
| @@ -252,7 +252,7 @@ gnutls_emacs_global_init (void) | |||
| 252 | return gnutls_make_error (ret); | 252 | return gnutls_make_error (ret); |
| 253 | } | 253 | } |
| 254 | 254 | ||
| 255 | /* Deinitializes global GNU TLS state. | 255 | /* Deinitializes global GnuTLS state. |
| 256 | See also `gnutls-global-init'. */ | 256 | See also `gnutls-global-init'. */ |
| 257 | static Lisp_Object | 257 | static Lisp_Object |
| 258 | gnutls_emacs_global_deinit (void) | 258 | gnutls_emacs_global_deinit (void) |