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.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user