comparison lisp/printing.el @ 57187:c9052d462541

Doc fix (gsprint).
author Vinicius Jose Latorre <viniciusjl@ig.com.br>
date Wed, 22 Sep 2004 02:28:21 +0000
parents a36e2d80b510
children e53d659f0afd 0b158db81c28
comparison
equal deleted inserted replaced
57186:a76a93daaed3 57187:c9052d462541
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004 3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004
4 ;; Free Software Foundation, Inc. 4 ;; Free Software Foundation, Inc.
5 5
6 ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> 6 ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
7 ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br> 7 ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
8 ;; Time-stamp: <2004/07/20 21:44:43 vinicius> 8 ;; Time-stamp: <2004/09/21 22:51:58 vinicius>
9 ;; Keywords: wp, print, PostScript 9 ;; Keywords: wp, print, PostScript
10 ;; Version: 6.8 10 ;; Version: 6.8
11 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ 11 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
12 12
13 (defconst pr-version "6.8" 13 (defconst pr-version "6.8"
14 "printing.el, v 6.8 <2004/07/12 vinicius> 14 "printing.el, v 6.8 <2004/09/21 vinicius>
15 15
16 Please send all bug fixes and enhancements to 16 Please send all bug fixes and enhancements to
17 Vinicius Jose Latorre <viniciusjl@ig.com.br> 17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
18 ") 18 ")
19 19
256 ;; Where `CCC' is whatever is at the beginning of the text to be printed. 256 ;; Where `CCC' is whatever is at the beginning of the text to be printed.
257 ;; 257 ;;
258 ;; Therefore, the printer `\\host\printer' is not a text printer, but a 258 ;; Therefore, the printer `\\host\printer' is not a text printer, but a
259 ;; PostScript printer. So, please, don't include this printer in 259 ;; PostScript printer. So, please, don't include this printer in
260 ;; `pr-txt-printer-alist' (which see). 260 ;; `pr-txt-printer-alist' (which see).
261 ;;
262 ;; 5. Use gsprint instead of ghostscript to print monochrome PostScript files
263 ;; in Windows. The gsprint utility is faster than ghostscript to print
264 ;; monochrome PostScript.
265 ;;
266 ;; The efficiency is similar to print non-monochrome PostScript file.
267 ;;
268 ;; Also the gsprint utility comes together with gsview distribution.
269 ;;
270 ;; For more information about gsprint see
271 ;; `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'.
261 ;; 272 ;;
262 ;; 273 ;;
263 ;; Using `printing' 274 ;; Using `printing'
264 ;; ---------------- 275 ;; ----------------
265 ;; 276 ;;
920 ;; 931 ;;
921 ;; * For Windows system: 932 ;; * For Windows system:
922 ;; 933 ;;
923 ;; gswin32, gsview32 934 ;; gswin32, gsview32
924 ;; `http://www.gnu.org/software/ghostscript/ghostscript.html' 935 ;; `http://www.gnu.org/software/ghostscript/ghostscript.html'
936 ;; gsprint `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'.
925 ;; enscript `http://people.ssh.fi/mtr/genscript/' 937 ;; enscript `http://people.ssh.fi/mtr/genscript/'
926 ;; psnup `http://www.dcs.ed.ac.uk/home/ajcd/psutils/index.html' 938 ;; psnup `http://www.dcs.ed.ac.uk/home/ajcd/psutils/index.html'
927 ;; redmon `http://www.cs.wisc.edu/~ghost/redmon/' 939 ;; redmon `http://www.cs.wisc.edu/~ghost/redmon/'
928 ;; 940 ;;
929 ;; 941 ;;
930 ;; Acknowledgments 942 ;; Acknowledgments
931 ;; --------------- 943 ;; ---------------
944 ;;
945 ;; Thanks to Lennart Borgman <lennart.borgman.073@student.lu.se> for gsprint
946 ;; suggestion (see tip 5 in section Tips).
932 ;; 947 ;;
933 ;; Thanks to Drew Adams <drew.adams@oracle.com> for suggestions: 948 ;; Thanks to Drew Adams <drew.adams@oracle.com> for suggestions:
934 ;; - directory processing. 949 ;; - directory processing.
935 ;; - `pr-path-alist' variable. 950 ;; - `pr-path-alist' variable.
936 ;; - doc fix. 951 ;; - doc fix.