2001-07-15 16:15:35 +00:00
|
|
|
;;; lpr.el --- print Emacs buffer on line printer
|
1992-05-30 22:12:04 +00:00
|
|
|
|
2017-01-01 03:14:01 +00:00
|
|
|
;; Copyright (C) 1985, 1988, 1992, 1994, 2001-2017 Free Software
|
2013-01-01 09:11:05 +00:00
|
|
|
;; Foundation, Inc.
|
1992-07-22 04:22:42 +00:00
|
|
|
|
2014-02-10 01:34:22 +00:00
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
2001-07-15 16:15:35 +00:00
|
|
|
;; Keywords: unix
|
1992-07-16 21:47:34 +00:00
|
|
|
|
1991-01-02 23:29:10 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1991-01-02 23:29:10 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1991-01-02 23:29:10 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 08:06:51 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1991-01-02 23:29:10 +00:00
|
|
|
|
1993-03-22 03:27:18 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
2001-01-30 19:36:09 +00:00
|
|
|
;; Commands to send the region or a buffer to your printer. Entry points
|
2002-05-22 01:20:26 +00:00
|
|
|
;; are `lpr-buffer', `print-buffer', `lpr-region', or `print-region'; option
|
1998-07-03 19:54:17 +00:00
|
|
|
;; variables include `printer-name', `lpr-switches' and `lpr-command'.
|
1993-03-22 03:27:18 +00:00
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;;; Code:
|
1991-01-02 23:29:10 +00:00
|
|
|
|
2001-01-30 19:36:09 +00:00
|
|
|
;;;###autoload
|
2001-01-30 12:04:05 +00:00
|
|
|
(defvar lpr-windows-system
|
2011-11-24 08:21:03 +00:00
|
|
|
(memq system-type '(ms-dos windows-nt))
|
|
|
|
"Non-nil if running on MS-DOS or MS Windows.")
|
2001-01-30 12:04:05 +00:00
|
|
|
|
2001-01-30 19:36:09 +00:00
|
|
|
;;;###autoload
|
2001-01-30 12:04:05 +00:00
|
|
|
(defvar lpr-lp-system
|
2011-11-24 08:21:03 +00:00
|
|
|
(memq system-type '(usg-unix-v hpux irix))
|
|
|
|
"Non-nil if running on a system type that uses the \"lp\" command.")
|
2001-01-30 12:04:05 +00:00
|
|
|
|
|
|
|
|
1997-04-12 08:35:41 +00:00
|
|
|
(defgroup lpr nil
|
2005-07-04 02:15:34 +00:00
|
|
|
"Print Emacs buffer on line printer."
|
1997-04-12 08:35:41 +00:00
|
|
|
:group 'wp)
|
|
|
|
|
2001-01-30 12:04:05 +00:00
|
|
|
|
1998-07-03 19:54:17 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defcustom printer-name
|
2009-08-22 21:59:40 +00:00
|
|
|
(and (eq system-type 'ms-dos) "PRN")
|
2008-12-03 05:48:14 +00:00
|
|
|
"The name of a local printer to which data is sent for printing.
|
2015-09-17 23:08:20 +00:00
|
|
|
\(Note that PostScript files are sent to `ps-printer-name', which see.)
|
1998-07-03 19:54:17 +00:00
|
|
|
|
|
|
|
On Unix-like systems, a string value should be a name understood by
|
1999-01-17 18:58:43 +00:00
|
|
|
lpr's -P option; otherwise the value should be nil.
|
|
|
|
|
|
|
|
On MS-DOS and MS-Windows systems, a string value is taken as the name of
|
|
|
|
a printer device or port, provided `lpr-command' is set to \"\".
|
|
|
|
Typical non-default settings would be \"LPT1\" to \"LPT3\" for parallel
|
|
|
|
printers, or \"COM1\" to \"COM4\" or \"AUX\" for serial printers, or
|
|
|
|
\"//hostname/printer\" for a shared network printer. You can also set
|
|
|
|
it to the name of a file, in which case the output gets appended to that
|
|
|
|
file. If you want to discard the printed output, set this to \"NUL\"."
|
2001-01-30 12:04:05 +00:00
|
|
|
:type '(choice :menu-tag "Printer Name"
|
|
|
|
:tag "Printer Name"
|
|
|
|
(const :tag "Default" nil)
|
|
|
|
;; could use string but then we lose completion for files.
|
|
|
|
(file :tag "Name"))
|
1998-07-03 19:54:17 +00:00
|
|
|
:group 'lpr)
|
1997-04-12 08:35:41 +00:00
|
|
|
|
1991-05-13 22:05:14 +00:00
|
|
|
;;;###autoload
|
2001-01-30 12:04:05 +00:00
|
|
|
(defcustom lpr-switches nil
|
2008-12-03 05:48:14 +00:00
|
|
|
"List of strings to pass as extra options for the printer program.
|
1998-07-03 19:54:17 +00:00
|
|
|
It is recommended to set `printer-name' instead of including an explicit
|
|
|
|
switch on this list.
|
1997-04-12 08:35:41 +00:00
|
|
|
See `lpr-command'."
|
|
|
|
:type '(repeat (string :tag "Argument"))
|
|
|
|
:group 'lpr)
|
1993-12-23 03:14:40 +00:00
|
|
|
|
2001-02-27 19:12:19 +00:00
|
|
|
(defcustom lpr-add-switches (memq system-type '(berkeley-unix gnu/linux))
|
2008-12-03 05:48:14 +00:00
|
|
|
"Non-nil means construct `-T' and `-J' options for the printer program.
|
1995-12-21 17:55:44 +00:00
|
|
|
These are made assuming that the program is `lpr';
|
|
|
|
if you are using some other incompatible printer program,
|
1997-04-12 08:35:41 +00:00
|
|
|
this variable should be nil."
|
|
|
|
:type 'boolean
|
|
|
|
:group 'lpr)
|
1991-01-02 23:29:10 +00:00
|
|
|
|
2001-01-30 12:04:05 +00:00
|
|
|
(defcustom lpr-printer-switch
|
|
|
|
(if lpr-lp-system
|
|
|
|
"-d "
|
|
|
|
"-P")
|
2008-12-03 05:48:14 +00:00
|
|
|
"Printer switch, that is, something like \"-P\", \"-d \", \"/D:\", etc.
|
2001-01-30 12:04:05 +00:00
|
|
|
This switch is used in conjunction with `printer-name'."
|
|
|
|
:type '(choice :menu-tag "Printer Name Switch"
|
|
|
|
:tag "Printer Name Switch"
|
|
|
|
(const :tag "None" nil)
|
|
|
|
(string :tag "Printer Switch"))
|
|
|
|
:group 'lpr)
|
|
|
|
|
1992-09-01 20:07:45 +00:00
|
|
|
;;;###autoload
|
1997-04-12 08:35:41 +00:00
|
|
|
(defcustom lpr-command
|
2009-11-11 05:49:09 +00:00
|
|
|
(purecopy
|
1999-01-17 18:58:43 +00:00
|
|
|
(cond
|
2001-01-30 12:04:05 +00:00
|
|
|
(lpr-windows-system
|
1999-01-17 18:58:43 +00:00
|
|
|
"")
|
2001-01-30 12:04:05 +00:00
|
|
|
(lpr-lp-system
|
1999-01-17 18:58:43 +00:00
|
|
|
"lp")
|
|
|
|
(t
|
2009-11-11 05:49:09 +00:00
|
|
|
"lpr")))
|
2008-12-03 05:48:14 +00:00
|
|
|
"Name of program for printing a file.
|
1999-01-17 18:58:43 +00:00
|
|
|
|
|
|
|
On MS-DOS and MS-Windows systems, if the value is an empty string then
|
|
|
|
Emacs will write directly to the printer port named by `printer-name'.
|
|
|
|
The programs `print' and `nprint' (the standard print programs on
|
|
|
|
Windows NT and Novell Netware respectively) are handled specially, using
|
|
|
|
`printer-name' as the destination for output; any other program is
|
|
|
|
treated like `lpr' except that an explicit filename is given as the last
|
|
|
|
argument."
|
1997-04-12 08:35:41 +00:00
|
|
|
:type 'string
|
|
|
|
:group 'lpr)
|
1991-01-02 23:29:10 +00:00
|
|
|
|
1995-02-02 21:12:06 +00:00
|
|
|
;; Default is nil, because that enables us to use pr -f
|
|
|
|
;; which is more reliable than pr with no args, which is what lpr -p does.
|
1997-04-12 08:35:41 +00:00
|
|
|
(defcustom lpr-headers-switches nil
|
2008-12-03 05:48:14 +00:00
|
|
|
"List of strings of options to request page headings in the printer program.
|
1995-02-02 21:12:06 +00:00
|
|
|
If nil, we run `lpr-page-header-program' to make page headings
|
1997-04-12 08:35:41 +00:00
|
|
|
and print the result."
|
2013-05-11 02:21:29 +00:00
|
|
|
:type '(choice (const nil)
|
|
|
|
(string :tag "Single argument")
|
|
|
|
(repeat :tag "Multiple arguments" (string :tag "Argument")))
|
1997-04-12 08:35:41 +00:00
|
|
|
:group 'lpr)
|
1993-12-23 03:14:40 +00:00
|
|
|
|
2013-07-24 04:37:11 +00:00
|
|
|
(defcustom print-region-function
|
|
|
|
(if (memq system-type '(ms-dos windows-nt))
|
Cleanup namespace of dos-w32.el.
* lisp/dos-w32.el (minibuffer-history-case-insensitive-variables)
(path-separator, null-device, buffer-file-coding-system)
(lpr-headers-switches): Check system-type before modifying them.
(find-buffer-file-type-coding-system): Mark obsolete.
(w32-find-file-not-found-set-buffer-file-coding-system): Rename from
find-file-not-found-set-buffer-file-coding-system.
(w32-untranslated-filesystem-list, w32-untranslated-canonical-name):
(w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
(w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p):
(w32-direct-print-region-helper, w32-direct-print-region-function)
(w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
* lisp/startup.el (normal-top-level-add-subdirs-to-load-path):
* lisp/ps-print.el (ps-print-region-function):
* lisp/lpr.el (print-region-function): Use new name.
* lisp/simple.el (copy-region-as-kill): Fix call to region-extract-function.
* lisp/emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
(byte-compile-and-folded): New function.
(=, <, >, <=, >=): Use it.
2013-10-30 02:45:53 +00:00
|
|
|
#'w32-direct-print-region-function
|
2013-07-24 04:37:11 +00:00
|
|
|
#'call-process-region)
|
1991-01-02 23:29:10 +00:00
|
|
|
"Function to call to print the region on a printer.
|
1997-04-12 08:35:41 +00:00
|
|
|
See definition of `print-region-1' for calling conventions."
|
2013-07-24 04:37:11 +00:00
|
|
|
:type 'function
|
1997-04-12 08:35:41 +00:00
|
|
|
:group 'lpr)
|
1991-01-02 23:29:10 +00:00
|
|
|
|
1997-04-12 08:35:41 +00:00
|
|
|
(defcustom lpr-page-header-program "pr"
|
2008-12-03 05:48:14 +00:00
|
|
|
"Name of program for adding page headers to a file."
|
1997-04-12 08:35:41 +00:00
|
|
|
:type 'string
|
|
|
|
:group 'lpr)
|
1994-09-29 23:12:31 +00:00
|
|
|
|
1997-05-15 04:50:40 +00:00
|
|
|
;; Berkeley systems support -F, and GNU pr supports both -f and -F,
|
|
|
|
;; So it looks like -F is a better default.
|
2007-06-17 22:19:58 +00:00
|
|
|
(defcustom lpr-page-header-switches '("-h" "%s" "-F")
|
2008-12-03 05:48:14 +00:00
|
|
|
"List of strings to use as options for the page-header-generating program.
|
2007-06-17 22:19:58 +00:00
|
|
|
If `%s' appears in any of the strings, it is substituted by the page title.
|
|
|
|
Note that for correct quoting, `%s' should normally be a separate element.
|
1997-04-12 08:35:41 +00:00
|
|
|
The variable `lpr-page-header-program' specifies the program to use."
|
|
|
|
:type '(repeat string)
|
|
|
|
:group 'lpr)
|
1994-09-29 23:12:31 +00:00
|
|
|
|
1991-05-09 21:50:34 +00:00
|
|
|
;;;###autoload
|
1991-01-02 23:29:10 +00:00
|
|
|
(defun lpr-buffer ()
|
1999-12-28 03:36:21 +00:00
|
|
|
"Print buffer contents without pagination or page headers.
|
|
|
|
See the variables `lpr-switches' and `lpr-command'
|
|
|
|
for customization of the printer command."
|
2010-11-20 20:23:26 +00:00
|
|
|
(interactive
|
|
|
|
(unless (y-or-n-p "Send current buffer to default printer? ")
|
2014-01-06 06:25:30 +00:00
|
|
|
(error "Canceled")))
|
1991-01-02 23:29:10 +00:00
|
|
|
(print-region-1 (point-min) (point-max) lpr-switches nil))
|
|
|
|
|
1991-05-09 21:50:34 +00:00
|
|
|
;;;###autoload
|
1991-01-02 23:29:10 +00:00
|
|
|
(defun print-buffer ()
|
1999-10-27 14:32:04 +00:00
|
|
|
"Paginate and print buffer contents.
|
|
|
|
|
1999-12-28 03:36:21 +00:00
|
|
|
The variable `lpr-headers-switches' controls how to paginate.
|
|
|
|
If it is nil (the default), we run the `pr' program (or whatever program
|
|
|
|
`lpr-page-header-program' specifies) to paginate.
|
|
|
|
`lpr-page-header-switches' specifies the switches for that program.
|
|
|
|
|
|
|
|
Otherwise, the switches in `lpr-headers-switches' are used
|
|
|
|
in the print command itself; we expect them to request pagination.
|
2003-02-04 12:29:42 +00:00
|
|
|
|
1999-12-28 03:36:21 +00:00
|
|
|
See the variables `lpr-switches' and `lpr-command'
|
|
|
|
for further customization of the printer command."
|
2010-11-20 20:23:26 +00:00
|
|
|
(interactive
|
|
|
|
(unless (y-or-n-p "Send current buffer to default printer? ")
|
2014-01-06 06:25:30 +00:00
|
|
|
(error "Canceled")))
|
1991-01-02 23:29:10 +00:00
|
|
|
(print-region-1 (point-min) (point-max) lpr-switches t))
|
|
|
|
|
1991-05-09 21:50:34 +00:00
|
|
|
;;;###autoload
|
1991-01-02 23:29:10 +00:00
|
|
|
(defun lpr-region (start end)
|
1999-12-28 03:36:21 +00:00
|
|
|
"Print region contents without pagination or page headers.
|
|
|
|
See the variables `lpr-switches' and `lpr-command'
|
|
|
|
for customization of the printer command."
|
2010-11-20 20:23:26 +00:00
|
|
|
(interactive
|
|
|
|
(if (y-or-n-p "Send selected text to default printer? ")
|
|
|
|
(list (region-beginning) (region-end))
|
2014-01-06 06:25:30 +00:00
|
|
|
(error "Canceled")))
|
1991-01-02 23:29:10 +00:00
|
|
|
(print-region-1 start end lpr-switches nil))
|
|
|
|
|
1991-05-09 21:50:34 +00:00
|
|
|
;;;###autoload
|
1991-01-02 23:29:10 +00:00
|
|
|
(defun print-region (start end)
|
1999-12-28 03:36:21 +00:00
|
|
|
"Paginate and print the region contents.
|
|
|
|
|
|
|
|
The variable `lpr-headers-switches' controls how to paginate.
|
|
|
|
If it is nil (the default), we run the `pr' program (or whatever program
|
|
|
|
`lpr-page-header-program' specifies) to paginate.
|
|
|
|
`lpr-page-header-switches' specifies the switches for that program.
|
|
|
|
|
|
|
|
Otherwise, the switches in `lpr-headers-switches' are used
|
|
|
|
in the print command itself; we expect them to request pagination.
|
2003-02-04 12:29:42 +00:00
|
|
|
|
1999-12-28 03:36:21 +00:00
|
|
|
See the variables `lpr-switches' and `lpr-command'
|
|
|
|
for further customization of the printer command."
|
2010-11-20 20:23:26 +00:00
|
|
|
(interactive
|
|
|
|
(if (y-or-n-p "Send selected text to default printer? ")
|
|
|
|
(list (region-beginning) (region-end))
|
2014-01-06 06:25:30 +00:00
|
|
|
(error "Canceled")))
|
1991-01-02 23:29:10 +00:00
|
|
|
(print-region-1 start end lpr-switches t))
|
|
|
|
|
|
|
|
(defun print-region-1 (start end switches page-headers)
|
2013-07-24 04:37:11 +00:00
|
|
|
(and page-headers lpr-headers-switches
|
|
|
|
;; It's possible to use an lpr option to get page headers.
|
|
|
|
(setq switches (append (if (stringp lpr-headers-switches)
|
|
|
|
(list lpr-headers-switches)
|
|
|
|
lpr-headers-switches)
|
|
|
|
switches)))
|
1994-07-01 23:59:32 +00:00
|
|
|
;; On some MIPS system, having a space in the job name
|
|
|
|
;; crashes the printer demon. But using dashes looks ugly
|
|
|
|
;; and it seems to annoying to do for that MIPS system.
|
2013-07-24 04:37:11 +00:00
|
|
|
(save-excursion
|
|
|
|
(let ((name (concat (buffer-name) " Emacs buffer"))
|
|
|
|
;; Make pipes use the same coding system as
|
|
|
|
;; writing the buffer to a file would.
|
|
|
|
(coding-system-for-write (or coding-system-for-write
|
|
|
|
buffer-file-coding-system))
|
|
|
|
(coding-system-for-read (or coding-system-for-read
|
|
|
|
buffer-file-coding-system))
|
|
|
|
(width tab-width))
|
1991-01-02 23:29:10 +00:00
|
|
|
(if (/= tab-width 8)
|
1995-02-08 06:35:50 +00:00
|
|
|
(let ((new-coords (print-region-new-buffer start end)))
|
2001-01-30 12:04:05 +00:00
|
|
|
(setq start (car new-coords)
|
|
|
|
end (cdr new-coords)
|
|
|
|
tab-width width)
|
1993-08-04 03:41:03 +00:00
|
|
|
(save-excursion
|
|
|
|
(goto-char end)
|
|
|
|
(setq end (point-marker)))
|
1991-01-02 23:29:10 +00:00
|
|
|
(untabify (point-min) (point-max))))
|
|
|
|
(if page-headers
|
1993-12-23 03:14:40 +00:00
|
|
|
(if lpr-headers-switches
|
1995-02-09 06:34:50 +00:00
|
|
|
;; We handled this above by modifying SWITCHES.
|
|
|
|
nil
|
1995-02-02 21:12:06 +00:00
|
|
|
;; Run a separate program to get page headers.
|
1995-02-08 06:35:50 +00:00
|
|
|
(let ((new-coords (print-region-new-buffer start end)))
|
2001-01-30 12:04:05 +00:00
|
|
|
(apply 'call-process-region (car new-coords) (cdr new-coords)
|
|
|
|
lpr-page-header-program t t nil
|
2013-07-24 04:37:11 +00:00
|
|
|
(mapcar (lambda (e) (format e name))
|
2006-09-09 10:40:27 +00:00
|
|
|
lpr-page-header-switches)))
|
2001-01-30 12:04:05 +00:00
|
|
|
(setq start (point-min)
|
|
|
|
end (point-max))))
|
2013-07-24 04:37:11 +00:00
|
|
|
(lpr-print-region start end switches name))))
|
|
|
|
|
|
|
|
(defun lpr-print-region (start end switches name)
|
|
|
|
(let ((buf (current-buffer))
|
|
|
|
(nswitches (lpr-flatten-list
|
|
|
|
(mapcar #'lpr-eval-switch ; Dynamic evaluation
|
|
|
|
switches)))
|
|
|
|
(switch-string (if switches
|
|
|
|
(concat " with options "
|
|
|
|
(mapconcat #'identity switches " "))
|
|
|
|
"")))
|
|
|
|
(message "Spooling%s..." switch-string)
|
|
|
|
(with-temp-buffer
|
|
|
|
(let ((retval
|
|
|
|
(let ((tempbuf (current-buffer)))
|
|
|
|
(with-current-buffer buf
|
|
|
|
(apply (or print-region-function 'call-process-region)
|
|
|
|
start end lpr-command
|
|
|
|
nil tempbuf nil
|
|
|
|
(nconc (and name lpr-add-switches
|
|
|
|
(list "-J" name))
|
|
|
|
;; These belong in pr if we are using that.
|
|
|
|
(and name lpr-add-switches lpr-headers-switches
|
|
|
|
(list "-T" name))
|
|
|
|
(and (stringp printer-name)
|
|
|
|
(string< "" printer-name)
|
|
|
|
(list (concat lpr-printer-switch
|
|
|
|
printer-name)))
|
|
|
|
nswitches))))))
|
|
|
|
(if (markerp end)
|
|
|
|
(set-marker end nil))
|
|
|
|
(funcall (if (memq retval '(nil 0)) #'message #'user-error)
|
|
|
|
"Spooling%s...done%s%s" switch-string
|
|
|
|
(pcase (count-lines (point-min) (point-max))
|
|
|
|
(0 "")
|
|
|
|
(1 ": ")
|
|
|
|
(_ ":\n"))
|
|
|
|
(buffer-string))))))
|
1991-01-02 23:29:10 +00:00
|
|
|
|
|
|
|
;; This function copies the text between start and end
|
1995-02-08 06:35:50 +00:00
|
|
|
;; into a new buffer, makes that buffer current.
|
|
|
|
;; It returns the new range to print from the new current buffer
|
|
|
|
;; as (START . END).
|
|
|
|
|
1993-12-23 03:14:40 +00:00
|
|
|
(defun print-region-new-buffer (ostart oend)
|
1995-02-08 06:35:50 +00:00
|
|
|
(if (string= (buffer-name) " *spool temp*")
|
|
|
|
(cons ostart oend)
|
|
|
|
(let ((oldbuf (current-buffer)))
|
|
|
|
(set-buffer (get-buffer-create " *spool temp*"))
|
2001-01-30 12:04:05 +00:00
|
|
|
(widen)
|
|
|
|
(erase-buffer)
|
1995-02-08 06:35:50 +00:00
|
|
|
(insert-buffer-substring oldbuf ostart oend)
|
|
|
|
(cons (point-min) (point-max)))))
|
1992-05-30 22:12:04 +00:00
|
|
|
|
1993-03-27 01:58:38 +00:00
|
|
|
(defun printify-region (begin end)
|
1997-05-07 20:31:57 +00:00
|
|
|
"Replace nonprinting characters in region with printable representations.
|
|
|
|
The printable representations use ^ (for ASCII control characters) or hex.
|
|
|
|
The characters tab, linefeed, space, return and formfeed are not affected."
|
1993-03-27 01:58:38 +00:00
|
|
|
(interactive "r")
|
|
|
|
(save-excursion
|
2003-08-01 23:40:00 +00:00
|
|
|
(save-restriction
|
|
|
|
(narrow-to-region begin end)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(let (c)
|
|
|
|
(while (re-search-forward "[\^@-\^h\^k\^n-\^_\177-\377]" nil t)
|
|
|
|
(setq c (preceding-char))
|
Replace Lisp calls to delete-backward-char by delete-char.
* bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
skeleton.el, term.el, time.el, wid-edit.el, woman.el,
calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
calc/calc.el, emacs-cl-extra.el, emacs-cl-loaddefs.el,
emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
progmodes/ps-mode.el, progmodes/verilog-mode.el,
progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
delete-backward-char by calls to delete-char.
2010-05-25 02:11:08 +00:00
|
|
|
(delete-char -1)
|
2005-07-04 02:15:34 +00:00
|
|
|
(insert (if (< c ?\s)
|
2003-08-01 23:40:00 +00:00
|
|
|
(format "\\^%c" (+ c ?@))
|
|
|
|
(format "\\%02x" c))))))))
|
2001-01-30 12:04:05 +00:00
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Functions hacked from `ps-print' package.
|
|
|
|
|
|
|
|
;; Dynamic evaluation
|
|
|
|
(defun lpr-eval-switch (arg)
|
|
|
|
(cond ((stringp arg) arg)
|
2013-07-24 04:37:11 +00:00
|
|
|
((functionp arg) (funcall arg))
|
2001-01-30 12:04:05 +00:00
|
|
|
((symbolp arg) (symbol-value arg))
|
|
|
|
((consp arg) (apply (car arg) (cdr arg)))
|
|
|
|
(t nil)))
|
|
|
|
|
|
|
|
;; `lpr-flatten-list' is defined here (copied from "message.el" and
|
|
|
|
;; enhanced to handle dotted pairs as well) until we can get some
|
|
|
|
;; sensible autoloads, or `flatten-list' gets put somewhere decent.
|
|
|
|
|
|
|
|
;; (lpr-flatten-list '((a . b) c (d . e) (f g h) i . j))
|
|
|
|
;; => (a b c d e f g h i j)
|
|
|
|
|
|
|
|
(defun lpr-flatten-list (&rest list)
|
|
|
|
(lpr-flatten-list-1 list))
|
|
|
|
|
|
|
|
(defun lpr-flatten-list-1 (list)
|
|
|
|
(cond
|
2013-07-24 04:37:11 +00:00
|
|
|
((null list) nil)
|
2001-01-30 12:04:05 +00:00
|
|
|
((consp list)
|
|
|
|
(append (lpr-flatten-list-1 (car list))
|
|
|
|
(lpr-flatten-list-1 (cdr list))))
|
|
|
|
(t (list list))))
|
1993-03-27 01:58:38 +00:00
|
|
|
|
1995-05-16 21:58:47 +00:00
|
|
|
(provide 'lpr)
|
|
|
|
|
1992-05-30 22:12:04 +00:00
|
|
|
;;; lpr.el ends here
|