[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master de0b96c4ae7 2/2: ; * lisp/mail/uudecode.el (uudecode-use-external
From: |
Mattias Engdegård |
Subject: |
master de0b96c4ae7 2/2: ; * lisp/mail/uudecode.el (uudecode-use-external): Boolean value. |
Date: |
Mon, 24 Apr 2023 10:07:19 -0400 (EDT) |
branch: master
commit de0b96c4ae745f524d225b7290722aa8e9fef17d
Author: Mattias Engdegård <mattiase@acm.org>
Commit: Mattias Engdegård <mattiase@acm.org>
; * 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)