diff options
| author | Eli Zaretskii | 2018-01-08 23:26:11 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2018-01-08 23:26:11 +0200 |
| commit | e25f961e37b063c10d7ffb3caa167ff61e816dcb (patch) | |
| tree | 7190bc94f30f98bd6c14ef4f47b492bc294eb37b | |
| parent | ec2636513cff3c35063dbaaf10059cbf2c8a9673 (diff) | |
| download | emacs-e25f961e37b063c10d7ffb3caa167ff61e816dcb.tar.gz emacs-e25f961e37b063c10d7ffb3caa167ff61e816dcb.zip | |
Avoid irrelevant hyperlink in doc string of 'epa-pinentry-mode'
* lisp/epa.el (epa-pinentry-mode): Doc fix. (Bug#30025)
| -rw-r--r-- | lisp/epa.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/epa.el b/lisp/epa.el index d2ad80e8fee..7878340fcd4 100644 --- a/lisp/epa.el +++ b/lisp/epa.el | |||
| @@ -56,12 +56,15 @@ If neither t nor nil, ask user for confirmation." | |||
| 56 | :type 'integer | 56 | :type 'integer |
| 57 | :group 'epa) | 57 | :group 'epa) |
| 58 | 58 | ||
| 59 | ;; In the doc string below, we say "symbol `error'" to avoid producing | ||
| 60 | ;; a hyperlink for `error' the function. | ||
| 59 | (defcustom epa-pinentry-mode nil | 61 | (defcustom epa-pinentry-mode nil |
| 60 | "The pinentry mode. | 62 | "The pinentry mode. |
| 61 | 63 | ||
| 62 | GnuPG 2.1 or later has an option to control the behavior of | 64 | GnuPG 2.1 or later has an option to control the behavior of |
| 63 | Pinentry invocation. Possible modes are: `ask', `cancel', | 65 | Pinentry invocation. The value should be the symbol `error', |
| 64 | `error', and `loopback'. See the GnuPG manual for the meanings. | 66 | `ask', `cancel', or `loopback'. See the GnuPG manual for the |
| 67 | meanings. | ||
| 65 | 68 | ||
| 66 | In epa commands, a particularly useful mode is `loopback', which | 69 | In epa commands, a particularly useful mode is `loopback', which |
| 67 | redirects all Pinentry queries to the caller, so Emacs can query | 70 | redirects all Pinentry queries to the caller, so Emacs can query |