# HG changeset patch # User Vinicius Jose Latorre # Date 1090386409 0 # Node ID 13ab9b29575ba1ed4ef9df1642b5444332d4bd89 # Parent 97254c2ac9ab6ac9c271e0e551bca88fa0b756d6 Doc fix. diff -r 97254c2ac9ab -r 13ab9b29575b lisp/ChangeLog --- a/lisp/ChangeLog Wed Jul 21 02:34:07 2004 +0000 +++ b/lisp/ChangeLog Wed Jul 21 05:06:49 2004 +0000 @@ -1,3 +1,7 @@ +2004-07-21 Vinicius Jose Latorre + + * printing.el: Doc fix. + 2004-07-20 Luc Teirlinck * frame.el (modify-all-frames-parameters): Minor doc fix. diff -r 97254c2ac9ab -r 13ab9b29575b lisp/printing.el --- a/lisp/printing.el Wed Jul 21 02:34:07 2004 +0000 +++ b/lisp/printing.el Wed Jul 21 05:06:49 2004 +0000 @@ -5,7 +5,7 @@ ;; Author: Vinicius Jose Latorre ;; Maintainer: Vinicius Jose Latorre -;; Time-stamp: <2004/07/12 21:10:35 vinicius> +;; Time-stamp: <2004/07/20 21:44:43 vinicius> ;; Keywords: wp, print, PostScript ;; Version: 6.8 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ @@ -40,23 +40,36 @@ ;; Introduction ;; ------------ ;; -;; This package provides an user interface to some printing utilities that -;; includes previewing/printing a PostScript file, printing a text file and -;; previewing/printing some major modes (like mh-folder-mode, -;; rmail-summary-mode, gnus-summary-mode, etc). It also includes a -;; PostScript/text printer database. -;; -;; Indeed, there are two user interfaces: +;; With `printing' you can preview or print a PostScript file. You can also +;; print a text file using PostScript, and preview or print buffers that use +;; certain special modes like mh-folder-mode, rmail-summary-mode, +;; gnus-summary-mode, etc. This package also includes a PostScript/text +;; printer database. +;; +;; There are two user interfaces: ;; ;; * Menu interface: -;; When `printing' is loaded, the menubar is modified to use `printing' -;; menu instead of the print options in menubar. +;; The `printing' menu replaces the usual print options in the menu bar. ;; This is the default user interface. ;; ;; * Buffer interface: -;; It is an option of `printing' menu, but it can be binded into another -;; key, so user can activate the buffer interface directly without using -;; a menu. See `pr-interface' command. +;; You can use a buffer interface instead of menus. It looks like a +;; customization buffer. Basically, it has the same options found in the +;; menu and some extra options, all this on a buffer. +;; +;; `printing' is prepared to run on GNU, Unix and NT systems. +;; On GNU or Unix system, `printing' depends on gs and gv utilities. +;; On NT system, `printing' depends on gstools (gswin32.exe and gsview32.exe). +;; To obtain ghostscript, ghostview and GSview see the URL +;; `http://www.gnu.org/software/ghostscript/ghostscript.html'. +;; +;; `printing' depends on ps-print package to generate PostScript files, to +;; spool and to despool PostScript buffer. So, `printing' provides an +;; interface to ps-print package and it also provides some extra stuff. +;; +;; To download the latest ps-print package see +;; `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz'. +;; Please, see README file for ps-print installation instructions. ;; ;; `printing' was inspired on: ;; @@ -72,20 +85,6 @@ ;; ps-print-interface.el Volker Franz ;; Graphical front end for ps-print and previewing ;; -;; `printing' is prepared to run on GNU, Unix and NT systems. -;; On GNU or Unix system, `printing' depends on gs and gv utilities. -;; On NT system, `printing' depends on gstools (gswin32.exe and gsview32.exe). -;; To obtain ghostscript, ghostview and GSview see the URL -;; `http://www.gnu.org/software/ghostscript/ghostscript.html'. -;; -;; `printing' depends on ps-print package to generate PostScript files, to -;; spool and to despool PostScript buffer. So, `printing' provides an -;; interface to ps-print package and it also provides some extra stuff. -;; -;; To download the latest ps-print package see -;; `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz'. -;; Please, see README file for ps-print installation instructions. -;; ;; ;; Log Messages ;; ------------