aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/lpr.el
diff options
context:
space:
mode:
authorMattias EngdegÄrd2023-04-28 15:03:47 +0200
committerMattias EngdegÄrd2023-04-28 15:03:47 +0200
commit6ebce84ff2b4e488fbffaa0f7cc2b06580557bf7 (patch)
tree98d4a4b0c99370f188e341d53afe90386e175ca6 /lisp/lpr.el
parenta57a8b75f50bca3b724d3f49c87aba7a9121bf13 (diff)
downloademacs-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.el3
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.
73See `lpr-command'." 73See `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.
78These are made assuming that the program is `lpr'; 79These are made assuming that the program is `lpr';
79if you are using some other incompatible printer program, 80if you are using some other incompatible printer program,