aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias EngdegÄrd2020-09-29 12:33:50 +0200
committerMattias EngdegÄrd2020-09-29 12:33:50 +0200
commit511c9d02b7addbb5ca0143af0cade21f0f06bd05 (patch)
tree639e7837a8155399571e05b1617e470dd425e1b7
parent4d57124fc8833f63e3f3cfb938cec99bd7f8ff81 (diff)
downloademacs-511c9d02b7addbb5ca0143af0cade21f0f06bd05.tar.gz
emacs-511c9d02b7addbb5ca0143af0cade21f0f06bd05.zip
* lisp/gnus/smime.el (smime-openssl-program): Allow nil value.
-rw-r--r--lisp/gnus/smime.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/gnus/smime.el b/lisp/gnus/smime.el
index 5500148e518..eb27fee88ce 100644
--- a/lisp/gnus/smime.el
+++ b/lisp/gnus/smime.el
@@ -174,8 +174,9 @@ and the files themselves should be in PEM format."
174 (eq 0 (call-process "openssl" nil nil nil "version")) 174 (eq 0 (call-process "openssl" nil nil nil "version"))
175 (error nil)) 175 (error nil))
176 "openssl") 176 "openssl")
177 "Name of OpenSSL binary." 177 "Name of OpenSSL binary or nil if none."
178 :type 'string 178 :type '(choice string
179 (const :tag "none" nil))
179 :group 'smime) 180 :group 'smime)
180 181
181;; OpenSSL option to select the encryption cipher 182;; OpenSSL option to select the encryption cipher