From de0b96c4ae745f524d225b7290722aa8e9fef17d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Mon, 24 Apr 2023 16:06:14 +0200 Subject: [PATCH] ; * lisp/mail/uudecode.el (uudecode-use-external): Boolean value. --- lisp/mail/uudecode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2