Mercurial > emacs
annotate lisp/lpr.el @ 2044:258362f03d90
(syms_of_lread): Set up Qascii_character.
(Fread_char, Fread_char_exclusive): Use that property
to convert symbols like tab, return, M-return,... to ASCII.
Include termhooks.h.
(read_escape): Handle \H, \A, \s. Use ..._modifier.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 07 Mar 1993 09:25:28 +0000 |
parents | b2a50ea75eea |
children | 10e417efb12a |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1 ;;; lpr.el --- print Emacs buffer on line printer. |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
3 ;; Copyright (C) 1985, 1988, 1992 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
5 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: unix |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
7 |
155 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
155 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
24 ;;; Code: |
155 | 25 |
269 | 26 ;;;###autoload |
1671
b2a50ea75eea
* lpr.el (lpr-switches, lpr-command): Make these defvars, not
Jim Blandy <jimb@redhat.com>
parents:
1615
diff
changeset
|
27 (defvar lpr-switches nil |
1615
21e2defc55c0
* lpr.el (lpr-command, lpr-switches): Removed strings starting
Jim Blandy <jimb@redhat.com>
parents:
1463
diff
changeset
|
28 "*List of strings to pass as extra switch args to lpr when it is invoked.") |
155 | 29 |
1068 | 30 ;;;###autoload |
1671
b2a50ea75eea
* lpr.el (lpr-switches, lpr-command): Make these defvars, not
Jim Blandy <jimb@redhat.com>
parents:
1615
diff
changeset
|
31 (defvar lpr-command |
1615
21e2defc55c0
* lpr.el (lpr-command, lpr-switches): Removed strings starting
Jim Blandy <jimb@redhat.com>
parents:
1463
diff
changeset
|
32 (if (memq system-type '(usg-unix-v dgux-unix hpux silicon-graphics-unix)) |
21e2defc55c0
* lpr.el (lpr-command, lpr-switches): Removed strings starting
Jim Blandy <jimb@redhat.com>
parents:
1463
diff
changeset
|
33 "lp" "lpr") |
21e2defc55c0
* lpr.el (lpr-command, lpr-switches): Removed strings starting
Jim Blandy <jimb@redhat.com>
parents:
1463
diff
changeset
|
34 "*Shell command for printing a file") |
155 | 35 |
36 (defvar print-region-function nil | |
37 "Function to call to print the region on a printer. | |
216
2c663336acaf
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
155
diff
changeset
|
38 See definition of `print-region-1' for calling conventions.") |
155 | 39 |
256 | 40 ;;;###autoload |
155 | 41 (defun lpr-buffer () |
42 "Print buffer contents as with Unix command `lpr'. | |
43 `lpr-switches' is a list of extra switches (strings) to pass to lpr." | |
44 (interactive) | |
45 (print-region-1 (point-min) (point-max) lpr-switches nil)) | |
46 | |
256 | 47 ;;;###autoload |
155 | 48 (defun print-buffer () |
49 "Print buffer contents as with Unix command `lpr -p'. | |
50 `lpr-switches' is a list of extra switches (strings) to pass to lpr." | |
51 (interactive) | |
52 (print-region-1 (point-min) (point-max) lpr-switches t)) | |
53 | |
256 | 54 ;;;###autoload |
155 | 55 (defun lpr-region (start end) |
56 "Print region contents as with Unix command `lpr'. | |
57 `lpr-switches' is a list of extra switches (strings) to pass to lpr." | |
58 (interactive "r") | |
59 (print-region-1 start end lpr-switches nil)) | |
60 | |
256 | 61 ;;;###autoload |
155 | 62 (defun print-region (start end) |
63 "Print region contents as with Unix command `lpr -p'. | |
64 `lpr-switches' is a list of extra switches (strings) to pass to lpr." | |
65 (interactive "r") | |
66 (print-region-1 start end lpr-switches t)) | |
67 | |
68 (defun print-region-1 (start end switches page-headers) | |
69 (let ((name (concat (buffer-name) " Emacs buffer")) | |
70 (width tab-width)) | |
71 (save-excursion | |
72 (message "Spooling...") | |
73 (if (/= tab-width 8) | |
74 (progn | |
75 (print-region-new-buffer start end) | |
76 (setq tab-width width) | |
77 (untabify (point-min) (point-max)))) | |
78 (if page-headers | |
79 (if (eq system-type 'usg-unix-v) | |
80 (progn | |
922 | 81 (print-region-new-buffer start end) |
155 | 82 (call-process-region start end "pr" t t nil)) |
83 ;; On BSD, use an option to get page headers. | |
84 (setq switches (cons "-p" switches)))) | |
85 (apply (or print-region-function 'call-process-region) | |
86 (nconc (list start end lpr-command | |
87 nil nil nil) | |
88 (nconc (and (eq system-type 'berkeley-unix) | |
89 (list "-J" name "-T" name)) | |
90 switches))) | |
91 (message "Spooling...done")))) | |
92 | |
93 ;; This function copies the text between start and end | |
94 ;; into a new buffer, makes that buffer current, | |
95 ;; and sets start and end to the buffer bounds. | |
96 ;; start and end are used free. | |
922 | 97 (defun print-region-new-buffer (start end) |
155 | 98 (or (string= (buffer-name) " *spool temp*") |
99 (let ((oldbuf (current-buffer))) | |
100 (set-buffer (get-buffer-create " *spool temp*")) | |
101 (widen) (erase-buffer) | |
102 (insert-buffer-substring oldbuf start end) | |
103 (setq start (point-min) end (point-max))))) | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
104 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
105 ;;; lpr.el ends here |