aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGerd Moellmann2001-01-30 19:36:09 +0000
committerGerd Moellmann2001-01-30 19:36:09 +0000
commitbdc9238e5f2a9b5614cc1393a9ba8502b13b2ae2 (patch)
tree679fb69e0f49a8bd4877c43ece405df65b801a70 /lisp
parent914d725857ac6cb0c14a55213efe9de07185c53b (diff)
downloademacs-bdc9238e5f2a9b5614cc1393a9ba8502b13b2ae2.tar.gz
emacs-bdc9238e5f2a9b5614cc1393a9ba8502b13b2ae2.zip
(lpr-windows-system, lpr-lp-system): Add autoload cookies.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/lpr.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el
index 6f6f3d53b25..41e3f031b94 100644
--- a/lisp/lpr.el
+++ b/lisp/lpr.el
@@ -24,15 +24,17 @@
24 24
25;;; Commentary: 25;;; Commentary:
26 26
27;; Commands to send the region or a buffer your printer. Entry points 27;; Commands to send the region or a buffer to your printer. Entry points
28;; are `lpr-buffer', `print-buffer', lpr-region', or `print-region'; option 28;; are `lpr-buffer', `print-buffer', lpr-region', or `print-region'; option
29;; variables include `printer-name', `lpr-switches' and `lpr-command'. 29;; variables include `printer-name', `lpr-switches' and `lpr-command'.
30 30
31;;; Code: 31;;; Code:
32 32
33;;;###autoload
33(defvar lpr-windows-system 34(defvar lpr-windows-system
34 (memq system-type '(emx win32 w32 mswindows ms-dos windows-nt))) 35 (memq system-type '(emx win32 w32 mswindows ms-dos windows-nt)))
35 36
37;;;###autoload
36(defvar lpr-lp-system 38(defvar lpr-lp-system
37 (memq system-type '(usg-unix-v dgux hpux irix))) 39 (memq system-type '(usg-unix-v dgux hpux irix)))
38 40