summaryrefslogtreecommitdiff
path: root/lisp/mail
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2023-04-28 15:03:47 +0200
committerMattias EngdegÄrd <mattiase@acm.org>2023-04-28 15:03:47 +0200
commit6ebce84ff2b4e488fbffaa0f7cc2b06580557bf7 (patch)
tree98d4a4b0c99370f188e341d53afe90386e175ca6 /lisp/mail
parenta57a8b75f50bca3b724d3f49c87aba7a9121bf13 (diff)
downloademacs-6ebce84ff2b4e488fbffaa0f7cc2b06580557bf7.tar.gz
Use t for non-nil default values in boolean defcustom declarations
* lisp/emulation/viper-ex.el (ex-unix-type-shell): * lisp/emulation/viper-init.el (viper-ms-style-os-p): * lisp/eshell/em-glob.el (eshell-glob-case-insensitive): * lisp/filecache.el (file-cache-ignore-case): * lisp/lpr.el (lpr-add-switches): * lisp/ls-lisp.el (ls-lisp-ignore-case): * lisp/mail/binhex.el (binhex-use-external): * lisp/progmodes/cperl-mode.el (cperl-electric-parens-mark): Normalise default values to nil or t.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/binhex.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/binhex.el b/lisp/mail/binhex.el
index 4b903578a28..15f598fa224 100644
--- a/lisp/mail/binhex.el
+++ b/lisp/mail/binhex.el
@@ -49,7 +49,7 @@ input and write the converted data to its standard output."
:type '(repeat string))
(defcustom binhex-use-external
- (executable-find binhex-decoder-program)
+ (not (not (executable-find binhex-decoder-program)))
"Use external binhex program."
:version "22.1"
:type 'boolean)