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/lpr.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/lpr.el')
| -rw-r--r-- | lisp/lpr.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el index af59a953f38..6b8343b695d 100644 --- a/lisp/lpr.el +++ b/lisp/lpr.el | |||
| @@ -73,7 +73,8 @@ switch on this list. | |||
| 73 | See `lpr-command'." | 73 | See `lpr-command'." |
| 74 | :type '(repeat (string :tag "Argument"))) | 74 | :type '(repeat (string :tag "Argument"))) |
| 75 | 75 | ||
| 76 | (defcustom lpr-add-switches (memq system-type '(berkeley-unix gnu/linux)) | 76 | (defcustom lpr-add-switches |
| 77 | (not (not (memq system-type '(berkeley-unix gnu/linux)))) | ||
| 77 | "Non-nil means construct `-T' and `-J' options for the printer program. | 78 | "Non-nil means construct `-T' and `-J' options for the printer program. |
| 78 | These are made assuming that the program is `lpr'; | 79 | These are made assuming that the program is `lpr'; |
| 79 | if you are using some other incompatible printer program, | 80 | if you are using some other incompatible printer program, |