comparison lisp/printing.el @ 56493:13ab9b29575b

Doc fix.
author Vinicius Jose Latorre <viniciusjl@ig.com.br>
date Wed, 21 Jul 2004 05:06:49 +0000
parents 10b68aa88abe
children a36e2d80b510 b9eee0a7bef5
comparison
equal deleted inserted replaced
56492:97254c2ac9ab 56493:13ab9b29575b
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/12 21:10:35 vinicius> 8 ;; Time-stamp: <2004/07/20 21:44:43 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"
38 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 38 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
39 ;; 39 ;;
40 ;; Introduction 40 ;; Introduction
41 ;; ------------ 41 ;; ------------
42 ;; 42 ;;
43 ;; This package provides an user interface to some printing utilities that 43 ;; With `printing' you can preview or print a PostScript file. You can also
44 ;; includes previewing/printing a PostScript file, printing a text file and 44 ;; print a text file using PostScript, and preview or print buffers that use
45 ;; previewing/printing some major modes (like mh-folder-mode, 45 ;; certain special modes like mh-folder-mode, rmail-summary-mode,
46 ;; rmail-summary-mode, gnus-summary-mode, etc). It also includes a 46 ;; gnus-summary-mode, etc. This package also includes a PostScript/text
47 ;; PostScript/text printer database. 47 ;; printer database.
48 ;; 48 ;;
49 ;; Indeed, there are two user interfaces: 49 ;; There are two user interfaces:
50 ;; 50 ;;
51 ;; * Menu interface: 51 ;; * Menu interface:
52 ;; When `printing' is loaded, the menubar is modified to use `printing' 52 ;; The `printing' menu replaces the usual print options in the menu bar.
53 ;; menu instead of the print options in menubar.
54 ;; This is the default user interface. 53 ;; This is the default user interface.
55 ;; 54 ;;
56 ;; * Buffer interface: 55 ;; * Buffer interface:
57 ;; It is an option of `printing' menu, but it can be binded into another 56 ;; You can use a buffer interface instead of menus. It looks like a
58 ;; key, so user can activate the buffer interface directly without using 57 ;; customization buffer. Basically, it has the same options found in the
59 ;; a menu. See `pr-interface' command. 58 ;; menu and some extra options, all this on a buffer.
60 ;;
61 ;; `printing' was inspired on:
62 ;;
63 ;; print-nt.el Frederic Corne <frederic.corne@erli.fr>
64 ;; Special printing functions for Windows NT
65 ;;
66 ;; mh-e-init.el Tom Vogels <tov@ece.cmu.edu>
67 ;; PS-print for mail messages
68 ;;
69 ;; win32-ps-print.el Matthew O. Persico <mpersico@erols.com>
70 ;; PostScript printing with ghostscript
71 ;;
72 ;; ps-print-interface.el Volker Franz <volker.franz@tuebingen.mpg.de>
73 ;; Graphical front end for ps-print and previewing
74 ;; 59 ;;
75 ;; `printing' is prepared to run on GNU, Unix and NT systems. 60 ;; `printing' is prepared to run on GNU, Unix and NT systems.
76 ;; On GNU or Unix system, `printing' depends on gs and gv utilities. 61 ;; On GNU or Unix system, `printing' depends on gs and gv utilities.
77 ;; On NT system, `printing' depends on gstools (gswin32.exe and gsview32.exe). 62 ;; On NT system, `printing' depends on gstools (gswin32.exe and gsview32.exe).
78 ;; To obtain ghostscript, ghostview and GSview see the URL 63 ;; To obtain ghostscript, ghostview and GSview see the URL
83 ;; interface to ps-print package and it also provides some extra stuff. 68 ;; interface to ps-print package and it also provides some extra stuff.
84 ;; 69 ;;
85 ;; To download the latest ps-print package see 70 ;; To download the latest ps-print package see
86 ;; `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz'. 71 ;; `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz'.
87 ;; Please, see README file for ps-print installation instructions. 72 ;; Please, see README file for ps-print installation instructions.
73 ;;
74 ;; `printing' was inspired on:
75 ;;
76 ;; print-nt.el Frederic Corne <frederic.corne@erli.fr>
77 ;; Special printing functions for Windows NT
78 ;;
79 ;; mh-e-init.el Tom Vogels <tov@ece.cmu.edu>
80 ;; PS-print for mail messages
81 ;;
82 ;; win32-ps-print.el Matthew O. Persico <mpersico@erols.com>
83 ;; PostScript printing with ghostscript
84 ;;
85 ;; ps-print-interface.el Volker Franz <volker.franz@tuebingen.mpg.de>
86 ;; Graphical front end for ps-print and previewing
88 ;; 87 ;;
89 ;; 88 ;;
90 ;; Log Messages 89 ;; Log Messages
91 ;; ------------ 90 ;; ------------
92 ;; 91 ;;