From 6ebce84ff2b4e488fbffaa0f7cc2b06580557bf7 Mon Sep 17 00:00:00 2001 From: Mattias EngdegÄrd Date: Fri, 28 Apr 2023 15:03:47 +0200 Subject: 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. --- lisp/eshell/em-glob.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/eshell') diff --git a/lisp/eshell/em-glob.el b/lisp/eshell/em-glob.el index 9402df43065..d00f8c93cd1 100644 --- a/lisp/eshell/em-glob.el +++ b/lisp/eshell/em-glob.el @@ -79,7 +79,7 @@ by zsh for filename generation." :type 'boolean :group 'eshell-glob) -(defcustom eshell-glob-case-insensitive (eshell-under-windows-p) +(defcustom eshell-glob-case-insensitive (not (not (eshell-under-windows-p))) "If non-nil, glob pattern matching will ignore case." :type 'boolean :group 'eshell-glob) -- cgit v1.2.1