#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/decls.scm,v 1.25 1991/09/18 13:56:26 arthur Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/decls.scm,v 1.26 1991/09/20 20:47:15 arthur Exp $
Copyright (c) 1989-91 Massachusetts Institute of Technology
"modlin"
"motcom"
"pasmod"
+ "print"
"process"
"prompt"
"rcs"
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/edwin.pkg,v 1.61 1991/09/18 13:56:05 arthur Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/edwin.pkg,v 1.62 1991/09/20 20:47:00 arthur Exp $
Copyright (c) 1989-91 Massachusetts Institute of Technology
"midas"
"pasmod"
"tximod"
- "manual") ; man page display
+ "manual" ; man page display
+ "print") ; printer output
(parent ())
(import (runtime rep)
hook/repl-eval)
;;; -*-Scheme-*-
;;;
-;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/loadef.scm,v 1.11 1991/09/18 13:56:13 arthur Exp $
+;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/loadef.scm,v 1.12 1991/09/20 20:46:33 arthur Exp $
;;;
;;; Copyright (c) 1986, 1989-91 Massachusetts Institute of Technology
;;;
'("manual" (EDWIN)))
(define-autoload-command 'manual-entry 'MANUAL
- "Display UNIX man page.")
\ No newline at end of file
+ "Display UNIX man page.")
+
+(define-library 'print
+ '("print" (EDWIN)))
+
+(define-autoload-command 'lpr-buffer 'PRINT
+ "Print buffer contents with Unix command `lpr'.")
+
+(define-autoload-command 'print-buffer 'PRINT
+ "Print buffer contents as with Unix command `lpr -p'.")
+
+(define-autoload-command 'lpr-region 'PRINT
+ "Print region contents as with Unix command `lpr'.")
+
+(define-autoload-command 'print-region 'PRINT
+ "Print region contents as with Unix command `lpr -p'.")
\ No newline at end of file