aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorMattias EngdegÄrd2023-04-28 15:03:47 +0200
committerMattias EngdegÄrd2023-04-28 15:03:47 +0200
commit6ebce84ff2b4e488fbffaa0f7cc2b06580557bf7 (patch)
tree98d4a4b0c99370f188e341d53afe90386e175ca6 /lisp/eshell
parenta57a8b75f50bca3b724d3f49c87aba7a9121bf13 (diff)
downloademacs-6ebce84ff2b4e488fbffaa0f7cc2b06580557bf7.tar.gz
emacs-6ebce84ff2b4e488fbffaa0f7cc2b06580557bf7.zip
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/eshell')
-rw-r--r--lisp/eshell/em-glob.el2
1 files changed, 1 insertions, 1 deletions
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."
79 :type 'boolean 79 :type 'boolean
80 :group 'eshell-glob) 80 :group 'eshell-glob)
81 81
82(defcustom eshell-glob-case-insensitive (eshell-under-windows-p) 82(defcustom eshell-glob-case-insensitive (not (not (eshell-under-windows-p)))
83 "If non-nil, glob pattern matching will ignore case." 83 "If non-nil, glob pattern matching will ignore case."
84 :type 'boolean 84 :type 'boolean
85 :group 'eshell-glob) 85 :group 'eshell-glob)