From: Mattias EngdegÄrd Date: Mon, 24 Apr 2023 14:06:14 +0000 (+0200) Subject: ; * lisp/mail/uudecode.el (uudecode-use-external): Boolean value. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=de0b96c4ae745f524d225b7290722aa8e9fef17d;p=emacs.git ; * lisp/mail/uudecode.el (uudecode-use-external): Boolean value. --- 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)