diff options
| author | Vinicius Jose Latorre | 2004-11-21 23:05:20 +0000 |
|---|---|---|
| committer | Vinicius Jose Latorre | 2004-11-21 23:05:20 +0000 |
| commit | 83aebfe62204109f19ef7dcca5429c1ddad21c57 (patch) | |
| tree | 1a19e67160b028e72f3f2b50d8fa2607a417568f | |
| parent | c033ddefa5a871421bccbf210ffedf3375a80f9f (diff) | |
| download | emacs-83aebfe62204109f19ef7dcca5429c1ddad21c57.tar.gz emacs-83aebfe62204109f19ef7dcca5429c1ddad21c57.zip | |
pr-setup & lpr-setup
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/printing.el | 26 |
2 files changed, 17 insertions, 11 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d6a7617579b..11ab880f1ab 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -6,6 +6,8 @@ | |||
| 6 | (ps-insert-file): Use insert-file-contents instead of insert-file. | 6 | (ps-insert-file): Use insert-file-contents instead of insert-file. |
| 7 | (ps-setup): Code fix. | 7 | (ps-setup): Code fix. |
| 8 | 8 | ||
| 9 | * printing.el (pr-setup, lpr-setup): Code fix. | ||
| 10 | |||
| 9 | 2004-11-21 Jay Belanger <belanger@truman.edu> | 11 | 2004-11-21 Jay Belanger <belanger@truman.edu> |
| 10 | 12 | ||
| 11 | * calc/calc-prog.el (math-integral-cache-state, calc-lang) | 13 | * calc/calc-prog.el (math-integral-cache-state, calc-lang) |
diff --git a/lisp/printing.el b/lisp/printing.el index 639ecbbbdf2..b70c55b3f98 100644 --- a/lisp/printing.el +++ b/lisp/printing.el | |||
| @@ -5,7 +5,7 @@ | |||
| 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/11/17 19:27:57 vinicius> | 8 | ;; Time-stamp: <2004/11/21 20:56:53 vinicius> |
| 9 | ;; Keywords: wp, print, PostScript | 9 | ;; Keywords: wp, print, PostScript |
| 10 | ;; Version: 6.8.3 | 10 | ;; Version: 6.8.3 |
| 11 | ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ | 11 | ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ |
| @@ -4280,6 +4280,7 @@ Or choose the menu option Printing/Show Settings/printing." | |||
| 4280 | (list | 4280 | (list |
| 4281 | (concat "\n;;; printing.el version " pr-version "\n") | 4281 | (concat "\n;;; printing.el version " pr-version "\n") |
| 4282 | ";; internal vars" | 4282 | ";; internal vars" |
| 4283 | (ps-comment-string "emacs-version " emacs-version) | ||
| 4283 | (ps-comment-string "pr-txt-command " pr-txt-command) | 4284 | (ps-comment-string "pr-txt-command " pr-txt-command) |
| 4284 | (ps-comment-string "pr-txt-switches " | 4285 | (ps-comment-string "pr-txt-switches " |
| 4285 | (pr-switches-string pr-txt-switches "pr-txt-switches")) | 4286 | (pr-switches-string pr-txt-switches "pr-txt-switches")) |
| @@ -4355,16 +4356,19 @@ Or choose the menu option Printing/Show Settings/lpr." | |||
| 4355 | (let (ps-prefix-quote) | 4356 | (let (ps-prefix-quote) |
| 4356 | (mapconcat | 4357 | (mapconcat |
| 4357 | #'ps-print-quote | 4358 | #'ps-print-quote |
| 4358 | '("\n;;; lpr.el settings\n" | 4359 | (list |
| 4359 | (25 . printer-name) | 4360 | "\n;;; lpr.el settings\n" |
| 4360 | (25 . lpr-switches) | 4361 | (ps-comment-string "emacs-version" emacs-version) |
| 4361 | (25 . lpr-add-switches) | 4362 | nil |
| 4362 | (25 . lpr-command) | 4363 | '(25 . printer-name) |
| 4363 | (25 . lpr-headers-switches) | 4364 | '(25 . lpr-switches) |
| 4364 | (25 . print-region-function) | 4365 | '(25 . lpr-add-switches) |
| 4365 | (25 . lpr-page-header-program) | 4366 | '(25 . lpr-command) |
| 4366 | (25 . lpr-page-header-switches) | 4367 | '(25 . lpr-headers-switches) |
| 4367 | ")\n\n;;; lpr.el - end of settings\n") | 4368 | '(25 . print-region-function) |
| 4369 | '(25 . lpr-page-header-program) | ||
| 4370 | '(25 . lpr-page-header-switches) | ||
| 4371 | ")\n\n;;; lpr.el - end of settings\n") | ||
| 4368 | "\n"))) | 4372 | "\n"))) |
| 4369 | 4373 | ||
| 4370 | 4374 | ||