diff options
| author | Mattias EngdegÄrd | 2023-04-28 15:03:47 +0200 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2023-04-28 15:03:47 +0200 |
| commit | 6ebce84ff2b4e488fbffaa0f7cc2b06580557bf7 (patch) | |
| tree | 98d4a4b0c99370f188e341d53afe90386e175ca6 /lisp/filecache.el | |
| parent | a57a8b75f50bca3b724d3f49c87aba7a9121bf13 (diff) | |
| download | emacs-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/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'." | |||
| 213 | :type 'boolean) | 213 | :type 'boolean) |
| 214 | 214 | ||
| 215 | (defcustom file-cache-ignore-case | 215 | (defcustom file-cache-ignore-case |
| 216 | (memq system-type '(ms-dos windows-nt cygwin)) | 216 | (not (not (memq system-type '(ms-dos windows-nt cygwin)))) |
| 217 | "Non-nil means ignore case when checking completions in the file cache. | 217 | "Non-nil means ignore case when checking completions in the file cache. |
| 218 | Defaults to nil on DOS and Windows, and t on other systems." | 218 | Defaults to nil on DOS and Windows, and t on other systems." |
| 219 | :type 'boolean) | 219 | :type 'boolean) |