aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorVinicius Jose Latorre2004-03-01 02:26:01 +0000
committerVinicius Jose Latorre2004-03-01 02:26:01 +0000
commitb8d955f4196278a43fb81821d87a89fbeb31f44e (patch)
tree3b90e1bc356157b2244126c8c7dc409b3f1f3a18 /lisp
parentacc037ba7a8305a5d9ccd7ae48feb35eae117e9e (diff)
downloademacs-b8d955f4196278a43fb81821d87a89fbeb31f44e.tar.gz
emacs-b8d955f4196278a43fb81821d87a89fbeb31f44e.zip
Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/printing.el29
2 files changed, 18 insertions, 16 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2fb4cd5ccca..2184f1b7f40 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -15,7 +15,10 @@
15 15
162004-02-29 Vinicius Jose Latorre <viniciusjl@ig.com.br> 162004-02-29 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17 17
18 * printing.el (pr-insert-section-4): Adjust buffer interface. 18 * printing.el: Replace "As Is..." in PostScript file print/preview by
19 "No Preprocessing...". Suggested by Colin Marquardt
20 <marquardt@zmd.de>.
21 (pr-insert-section-4): Adjust buffer interface.
19 22
202004-02-29 Kai Grossjohann <kai.grossjohann@gmx.net> 232004-02-29 Kai Grossjohann <kai.grossjohann@gmx.net>
21 24
diff --git a/lisp/printing.el b/lisp/printing.el
index 25b910a4353..6694805fcbd 100644
--- a/lisp/printing.el
+++ b/lisp/printing.el
@@ -5,7 +5,7 @@
5 5
6;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br> 6;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br>
7;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br> 7;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
8;; Time-stamp: <2004/02/29 20:52:58 vinicius> 8;; Time-stamp: <2004/02/29 23:18:15 vinicius>
9;; Keywords: wp, print, PostScript 9;; Keywords: wp, print, PostScript
10;; Version: 6.7.2 10;; Version: 6.7.2
11;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ 11;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
@@ -517,7 +517,7 @@ Please send all bug fixes and enhancements to
517;; 5 | Print >|---\ | |Despool... | | 517;; 5 | Print >|---\ | |Despool... | |
518;; 6 | Text Printer: name >|-\ | | +-----------+ | 518;; 6 | Text Printer: name >|-\ | | +-----------+ |
519;; +-----------------------------+ | | | +---------+ +------------+ 519;; +-----------------------------+ | | | +---------+ +------------+
520;; III 7 |[ ]Landscape | | | \-|Directory| | As Is... | Ia 520;; III 7 |[ ]Landscape | | | \-|Directory| | No Prep... | Ia
521;; 8 |[ ]Print Header | | | |Buffer | +------------+ Ib 521;; 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
522;; 9 |[ ]Print Header Frame | | | |Region | | name >|- C 522;; 9 |[ ]Print Header Frame | | | |Region | | name >|- C
523;; 10 |[ ]Line Number | | | +---------+ +------------+ 523;; 10 |[ ]Line Number | | | +---------+ +------------+
@@ -581,8 +581,8 @@ Please send all bug fixes and enhancements to
581;; 581;;
582;; NOTE 2: There are the following options for PostScript file 582;; NOTE 2: There are the following options for PostScript file
583;; processing: 583;; processing:
584;; Ia. Print the file *as is*, that is, send it directly to 584;; Ia. Print the file *No Preprocessing*, that is, send it
585;; PostScript printer. 585;; directly to PostScript printer.
586;; Ib. PostScript utility processing selection. 586;; Ib. PostScript utility processing selection.
587;; See `pr-ps-utility-alist' and `pr-setting-database' for 587;; See `pr-ps-utility-alist' and `pr-setting-database' for
588;; documentation. 588;; documentation.
@@ -2415,7 +2415,7 @@ See `pr-ps-printer-alist'.")
2415 ["Other..." (pr-ps-mode-preview nil t) 2415 ["Other..." (pr-ps-mode-preview nil t)
2416 :keys "\\[pr-ps-mode-preview]"]) 2416 :keys "\\[pr-ps-mode-preview]"])
2417 ("File" 2417 ("File"
2418 ["As Is..." (call-interactively 'pr-ps-file-preview) 2418 ["No Preprocessing..." (call-interactively 'pr-ps-file-preview)
2419 :keys "\\[pr-ps-file-preview]" 2419 :keys "\\[pr-ps-file-preview]"
2420 :help "Preview PostScript file"] 2420 :help "Preview PostScript file"]
2421 "--" 2421 "--"
@@ -2470,7 +2470,7 @@ See `pr-ps-printer-alist'.")
2470 ["Other..." (pr-ps-mode-ps-print nil t) 2470 ["Other..." (pr-ps-mode-ps-print nil t)
2471 :keys "\\[pr-ps-mode-ps-print]"]) 2471 :keys "\\[pr-ps-mode-ps-print]"])
2472 ("File" 2472 ("File"
2473 ["As Is..." (call-interactively 'pr-ps-file-ps-print) 2473 ["No Preprocessing..." (call-interactively 'pr-ps-file-ps-print)
2474 :keys "\\[pr-ps-file-ps-print]" 2474 :keys "\\[pr-ps-file-ps-print]"
2475 :help "Send PostScript file to printer"] 2475 :help "Send PostScript file to printer"]
2476 "--" 2476 "--"
@@ -2624,7 +2624,7 @@ See `pr-ps-printer-alist'.")
2624 ["Other..." (pr-ps-mode-preview nil t) 2624 ["Other..." (pr-ps-mode-preview nil t)
2625 :keys "\\[pr-ps-mode-preview]"]) 2625 :keys "\\[pr-ps-mode-preview]"])
2626 ("File" 2626 ("File"
2627 ["As Is..." (call-interactively 'pr-ps-file-preview) 2627 ["No Preprocessing..." (call-interactively 'pr-ps-file-preview)
2628 :keys "\\[pr-ps-file-preview]"] 2628 :keys "\\[pr-ps-file-preview]"]
2629 "--" 2629 "--"
2630 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist] 2630 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist]
@@ -2672,7 +2672,7 @@ See `pr-ps-printer-alist'.")
2672 ["Other..." (pr-ps-mode-ps-print nil t) 2672 ["Other..." (pr-ps-mode-ps-print nil t)
2673 :keys "\\[pr-ps-mode-ps-print]"]) 2673 :keys "\\[pr-ps-mode-ps-print]"])
2674 ("File" 2674 ("File"
2675 ["As Is..." (call-interactively 'pr-ps-file-ps-print) 2675 ["No Preprocessing..." (call-interactively 'pr-ps-file-ps-print)
2676 :keys "\\[pr-ps-file-ps-print]"] 2676 :keys "\\[pr-ps-file-ps-print]"]
2677 "--" 2677 "--"
2678 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist] 2678 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist]
@@ -2861,7 +2861,7 @@ II 4 | Printify >|-----\\ |File >|--\\ +--------+
2861 5 | Print >|---\\ | |Despool... | | 2861 5 | Print >|---\\ | |Despool... | |
2862 6 | Text Printer: name >|-\\ | | +-----------+ | 2862 6 | Text Printer: name >|-\\ | | +-----------+ |
2863 +-----------------------------+ | | | +---------+ +------------+ 2863 +-----------------------------+ | | | +---------+ +------------+
2864III 7 |[ ]Landscape | | | \\-|Directory| | As Is... | Ia 2864III 7 |[ ]Landscape | | | \\-|Directory| | No Prep... | Ia
2865 8 |[ ]Print Header | | | |Buffer | +------------+ Ib 2865 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
2866 9 |[ ]Print Header Frame | | | |Region | | name >|- C 2866 9 |[ ]Print Header Frame | | | |Region | | name >|- C
2867 10 |[ ]Line Number | | | +---------+ +------------+ 2867 10 |[ ]Line Number | | | +---------+ +------------+
@@ -2923,8 +2923,8 @@ I. PostScript printing:
2923 switch from gnus *Summary* buffer first. 2923 switch from gnus *Summary* buffer first.
2924 2924
2925 NOTE 2: There are the following options for PostScript file processing: 2925 NOTE 2: There are the following options for PostScript file processing:
2926 Ia. Print the file *as is*, that is, send it directly to 2926 Ia. Print the file *No Preprocessing*, that is, send it
2927 PostScript printer. 2927 directly to PostScript printer.
2928 Ib. PostScript utility processing selection. 2928 Ib. PostScript utility processing selection.
2929 See `pr-ps-utility-alist' and `pr-setting-database' for 2929 See `pr-ps-utility-alist' and `pr-setting-database' for
2930 documentation. 2930 documentation.
@@ -3130,7 +3130,7 @@ The printing interface buffer has the following sections:
3130 NOTE 2: Don't forget to download and install the utilities declared on 3130 NOTE 2: Don't forget to download and install the utilities declared on
3131 `pr-ps-utility-alist'. 3131 `pr-ps-utility-alist'.
3132 3132
3133 * Use It AS-IS : 3133 * No Preprocessing:
3134 If it's turned on, don't use the PostScript utility to preprocess the 3134 If it's turned on, don't use the PostScript utility to preprocess the
3135 PostScript file before printing/previewing. 3135 PostScript file before printing/previewing.
3136 3136
@@ -5752,9 +5752,8 @@ COMMAND.exe, COMMAND.bat and COMMAND.com in this order."
5752 (pr-choice-alist pr-ps-utility-alist) 5752 (pr-choice-alist pr-ps-utility-alist)
5753 "\n PostScript Utility : " 5753 "\n PostScript Utility : "
5754 " ") 5754 " ")
5755 ;; 1c. PostScript File: Use It AS-IS 5755 ;; 1c. PostScript File: No Preprocessing
5756 (pr-insert-toggle 'pr-i-ps-as-is " Use It ") 5756 (pr-insert-toggle 'pr-i-ps-as-is " No Preprocessing"))
5757 (pr-insert-italic "AS-IS"))
5758 5757
5759 5758
5760(defun pr-insert-section-2 () 5759(defun pr-insert-section-2 ()