]> git.eshelyaron.com Git - emacs.git/commitdiff
Use t for non-nil default values in boolean defcustom declarations
authorMattias Engdegård <mattiase@acm.org>
Fri, 28 Apr 2023 13:03:47 +0000 (15:03 +0200)
committerMattias Engdegård <mattiase@acm.org>
Fri, 28 Apr 2023 13:03:47 +0000 (15:03 +0200)
* 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/emulation/viper-ex.el
lisp/emulation/viper-init.el
lisp/eshell/em-glob.el
lisp/filecache.el
lisp/lpr.el
lisp/ls-lisp.el
lisp/mail/binhex.el
lisp/progmodes/cperl-mode.el

index 783c01058e2015db8001a3e2b71cb6ddbe7018d1..ecbcace2dd4959c7dee72caaee684b7bb8e619dd 100644 (file)
           "\\|"
           "bash$\\|bash.exe$"
           "\\)")
-         shell-file-name)))
+         shell-file-name)
+         t))
   "Is the user using a unix-type shell under a non-OS?"
   :type 'boolean)
 
index 986d1fe6bc67bffa7e5e47cfd402711be7ee128f..c39e3cf5142b6c0b52a3967b27c98805898a4ba5 100644 (file)
@@ -47,7 +47,8 @@
 (defun viper-window-display-p ()
   (and window-system (not (memq window-system '(tty stream pc)))))
 
-(defcustom viper-ms-style-os-p (memq system-type '(ms-dos windows-nt))
+(defcustom viper-ms-style-os-p
+  (not (not (memq system-type '(ms-dos windows-nt))))
   "Non-nil if Emacs is running under an MS-style OS: MS-DOS, or MS-Windows."
   :type 'boolean
   :tag "Is it Microsoft-made OS?"
index 9402df4306572df11bdf20e49c50bd558cdc6412..d00f8c93cd12854ada25ca707bdcc4c5495038c3 100644 (file)
@@ -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)
index c211a02b2d29746469719bbace401fd286b8c9d4..42225509eca5a2983beb7ba836301ffa5c83dca4 100644 (file)
@@ -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)
index af59a953f38e6337776b16477acb20d07e9e6bef..6b8343b695d450762632e5a4edeefe8cb19aa35e 100644 (file)
@@ -73,7 +73,8 @@ switch on this list.
 See `lpr-command'."
   :type '(repeat (string :tag "Argument")))
 
-(defcustom lpr-add-switches (memq system-type '(berkeley-unix gnu/linux))
+(defcustom lpr-add-switches
+  (not (not (memq system-type '(berkeley-unix gnu/linux))))
   "Non-nil means construct `-T' and `-J' options for the printer program.
 These are made assuming that the program is `lpr';
 if you are using some other incompatible printer program,
index 81ff14932c601950a7c313ec68017d6a6eac3120..485ac4476efaaa132937e9cb566528d4636c5af5 100644 (file)
@@ -101,7 +101,7 @@ update the dependent variables."
   :group 'ls-lisp)
 
 (defcustom ls-lisp-ignore-case
-  (memq ls-lisp-emulation '(MS-Windows MacOS))
+  (not (not (memq ls-lisp-emulation '(MS-Windows MacOS))))
   "Non-nil causes ls-lisp alphabetic sorting to ignore case."
   :set-after '(ls-lisp-emulation)
   :type 'boolean
index 4b903578a289fe82e114b429b7e0df80aee2e106..15f598fa22415f496c734ded471d1d3e6b8ef744 100644 (file)
@@ -49,7 +49,7 @@ input and write the converted data to its standard output."
   :type '(repeat string))
 
 (defcustom binhex-use-external
-  (executable-find binhex-decoder-program)
+  (not (not (executable-find binhex-decoder-program)))
   "Use external binhex program."
   :version "22.1"
   :type 'boolean)
index b6f0e9bca41e9f6a394bba18d6b61fe2f64d746e..ed021a7ebc914110461a8aeebaf24b5663788690 100644 (file)
@@ -275,7 +275,7 @@ Can be overwritten by `cperl-hairy' if nil."
   :type '(choice (const null) boolean)
   :group 'cperl-affected-by-hairy)
 
-(defcustom cperl-electric-parens-mark window-system
+(defcustom cperl-electric-parens-mark (not (not window-system))
   "Not-nil means that electric parens look for active mark.
 Default is yes if there is visual feedback on mark."
   :type 'boolean