summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2023-04-24 16:06:14 +0200
committerMattias EngdegÄrd <mattiase@acm.org>2023-04-24 16:06:14 +0200
commitde0b96c4ae745f524d225b7290722aa8e9fef17d (patch)
tree1dfe2c9c40700f1001c87ca68dfdf802cf5ddf36
parent613591f3846405d8b9e54b65951aaddd45369b7b (diff)
downloademacs-de0b96c4ae745f524d225b7290722aa8e9fef17d.tar.gz
; * lisp/mail/uudecode.el (uudecode-use-external): Boolean value.
-rw-r--r--lisp/mail/uudecode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/uudecode.el b/lisp/mail/uudecode.el
index 7b3bad9e25c..4b9acd922d8 100644
--- a/lisp/mail/uudecode.el
+++ b/lisp/mail/uudecode.el
@@ -40,7 +40,7 @@ input and write the converted data to its standard output."
:type '(repeat string))
(defcustom uudecode-use-external
- (executable-find uudecode-decoder-program)
+ (not (not (executable-find uudecode-decoder-program)))
"Use external uudecode program."
:version "22.1"
:type 'boolean)