diff options
| author | Juanma Barranquero | 2007-06-06 21:56:18 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-06-06 21:56:18 +0000 |
| commit | 1941dba29db41ed2f1782414f4f0e1f06551712c (patch) | |
| tree | 8f58ac5743b24c26e390be0f4f65a840597bc01f | |
| parent | fb7ece24acc4c6aad13ca2d86727718b0d8c41d0 (diff) | |
| download | emacs-1941dba29db41ed2f1782414f4f0e1f06551712c.tar.gz emacs-1941dba29db41ed2f1782414f4f0e1f06551712c.zip | |
(pgg-sign-region, pgg-sign): Fix typos in docstrings.
| -rw-r--r-- | lisp/pgg.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/pgg.el b/lisp/pgg.el index f6a5a96d2b8..eabc4f47408 100644 --- a/lisp/pgg.el +++ b/lisp/pgg.el | |||
| @@ -332,7 +332,7 @@ cache or user." | |||
| 332 | (interactive "r") | 332 | (interactive "r") |
| 333 | (let ((status | 333 | (let ((status |
| 334 | (pgg-save-coding-system start end | 334 | (pgg-save-coding-system start end |
| 335 | (pgg-invoke "encrypt-symmetric-region" | 335 | (pgg-invoke "encrypt-symmetric-region" |
| 336 | (or pgg-scheme pgg-default-scheme) | 336 | (or pgg-scheme pgg-default-scheme) |
| 337 | (point-min) (point-max) passphrase)))) | 337 | (point-min) (point-max) passphrase)))) |
| 338 | (when (interactive-p) | 338 | (when (interactive-p) |
| @@ -416,7 +416,7 @@ If the optional 3rd argument CLEARTEXT is non-nil, it does not create | |||
| 416 | a detached signature. | 416 | a detached signature. |
| 417 | 417 | ||
| 418 | If this function is called interactively, CLEARTEXT is enabled | 418 | If this function is called interactively, CLEARTEXT is enabled |
| 419 | and the the output is displayed. | 419 | and the output is displayed. |
| 420 | 420 | ||
| 421 | If optional PASSPHRASE is not specified, it will be obtained from the | 421 | If optional PASSPHRASE is not specified, it will be obtained from the |
| 422 | passphrase cache or user." | 422 | passphrase cache or user." |
| @@ -441,7 +441,7 @@ If optional arguments START and END are specified, only sign data | |||
| 441 | within the region. | 441 | within the region. |
| 442 | 442 | ||
| 443 | If this function is called interactively, CLEARTEXT is enabled | 443 | If this function is called interactively, CLEARTEXT is enabled |
| 444 | and the the output is displayed. | 444 | and the output is displayed. |
| 445 | 445 | ||
| 446 | If optional PASSPHRASE is not specified, it will be obtained from the | 446 | If optional PASSPHRASE is not specified, it will be obtained from the |
| 447 | passphrase cache or user." | 447 | passphrase cache or user." |
| @@ -485,7 +485,7 @@ signer's public key from `pgg-default-keyserver-address'." | |||
| 485 | (or (cdr (assq 'preferred-key-server packet)) | 485 | (or (cdr (assq 'preferred-key-server packet)) |
| 486 | pgg-default-keyserver-address)) | 486 | pgg-default-keyserver-address)) |
| 487 | (pgg-fetch-key keyserver key)) | 487 | (pgg-fetch-key keyserver key)) |
| 488 | (setq status | 488 | (setq status |
| 489 | (pgg-save-coding-system start end | 489 | (pgg-save-coding-system start end |
| 490 | (pgg-invoke "verify-region" (or pgg-scheme pgg-default-scheme) | 490 | (pgg-invoke "verify-region" (or pgg-scheme pgg-default-scheme) |
| 491 | (point-min) (point-max) signature))) | 491 | (point-min) (point-max) signature))) |