diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-01-30 19:36:09 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-01-30 19:36:09 +0000 |
commit | bdc9238e5f2a9b5614cc1393a9ba8502b13b2ae2 (patch) | |
tree | 679fb69e0f49a8bd4877c43ece405df65b801a70 /lisp/lpr.el | |
parent | 914d725857ac6cb0c14a55213efe9de07185c53b (diff) | |
download | emacs-bdc9238e5f2a9b5614cc1393a9ba8502b13b2ae2.tar.gz |
(lpr-windows-system, lpr-lp-system): Add autoload cookies.
Diffstat (limited to 'lisp/lpr.el')
-rw-r--r-- | lisp/lpr.el | 4 |
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 @@ ;;; Commentary: -;; Commands to send the region or a buffer your printer. Entry points +;; Commands to send the region or a buffer to your printer. Entry points ;; are `lpr-buffer', `print-buffer', lpr-region', or `print-region'; option ;; variables include `printer-name', `lpr-switches' and `lpr-command'. ;;; Code: +;;;###autoload (defvar lpr-windows-system (memq system-type '(emx win32 w32 mswindows ms-dos windows-nt))) +;;;###autoload (defvar lpr-lp-system (memq system-type '(usg-unix-v dgux hpux irix))) |