diff options
| author | Mattias EngdegÄrd <mattiase@acm.org> | 2023-04-28 15:03:47 +0200 |
|---|---|---|
| committer | Mattias EngdegÄrd <mattiase@acm.org> | 2023-04-28 15:03:47 +0200 |
| commit | 6ebce84ff2b4e488fbffaa0f7cc2b06580557bf7 (patch) | |
| tree | 98d4a4b0c99370f188e341d53afe90386e175ca6 /lisp/filecache.el | |
| parent | a57a8b75f50bca3b724d3f49c87aba7a9121bf13 (diff) | |
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/filecache.el')
| -rw-r--r-- | lisp/filecache.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/filecache.el b/lisp/filecache.el index c211a02b2d2..42225509eca 100644 --- a/lisp/filecache.el +++ b/lisp/filecache.el @@ -213,7 +213,7 @@ Defaults to the value of `case-fold-search'." :type 'boolean) (defcustom file-cache-ignore-case - (memq system-type '(ms-dos windows-nt cygwin)) + (not (not (memq system-type '(ms-dos windows-nt cygwin)))) "Non-nil means ignore case when checking completions in the file cache. Defaults to nil on DOS and Windows, and t on other systems." :type 'boolean) |
