]> code.delx.au - gnu-emacs/blobdiff - lisp/ps-print.el
(flyspell-mode-on): fix kill-buffer-hook
[gnu-emacs] / lisp / ps-print.el
index 1f777073f20e988b6966d656401f8f0ea435dca7..a44cfbee23558cdd21c842865e2f7c0c2406585e 100644 (file)
@@ -1,16 +1,19 @@
 ;;; ps-print.el --- Print text from the buffer as PostScript
 
-;; Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
+;; Copyright (C) 1993, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
 
-;; Author:     Jim Thompson (was <thompson@wg2.waii.com>)
-;; Author:     Jacques Duthen <duthen@cegelec-red.fr>
-;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
-;; Keywords:   print, PostScript
-;; Time-stamp: <97/08/28 22:35:25 vinicius>
-;; Version:    3.05.2
+;; Author:     Jim Thompson (was <thompson@wg2.waii.com>)
+;; Author:     Jacques Duthen <duthen@cegelec-red.fr>
+;; Author:     Vinicius Jose Latorre <vinicius@cpqd.com.br>
+;; Author:     Kenichi Handa <handa@etl.go.jp> (multibyte characters)
+;; Maintainer: Kenichi Handa <handa@etl.go.jp> (multibyte characters)
+;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
+;; Keywords:   print, PostScript
+;; Time-stamp: <98/08/19  11:10:03 vinicius>
+;; Version:    4.0
 
-(defconst ps-print-version "3.05.2"
-  "ps-print.el, v 3.05.2 <97/08/28 vinicius>
+(defconst ps-print-version "4.0"
+  "ps-print.el, v 4.0 <98/08/19 vinicius>
 
 Vinicius's last change version -- this file may have been edited as part of
 Emacs without changes to the version number.  When reporting bugs,
@@ -268,11 +271,11 @@ Please send all bug fixes and enhancements to
 ;; Headers
 ;; -------
 ;;
-;; Ps-print can print headers at the top of each column; the default
-;; headers contain the following four items: on the left, the name of
-;; the buffer and, if the buffer is visiting a file, the file's
-;; directory; on the right, the page number and date of printing.
-;; The default headers look something like this:
+;; Ps-print can print headers at the top of each column or at the top
+;; of each page; the default headers contain the following four items:
+;; on the left, the name of the buffer and, if the buffer is visiting
+;; a file, the file's directory; on the right, the page number and
+;; date of printing.  The default headers look something like this:
 ;;
 ;;     ps-print.el                                         1/21
 ;;     /home/jct/emacs-lisp/ps/new                     94/12/31
@@ -285,6 +288,9 @@ Please send all bug fixes and enhancements to
 ;; To turn off the header's gaudy framing box,
 ;; set `ps-print-header-frame' to nil.
 ;;
+;; To print only one header at the top of each page,
+;; set `ps-print-only-one-header' to t.
+;;
 ;; The font family and size of text in the header are determined
 ;; by the variables `ps-header-font-family', `ps-header-font-size' and
 ;; `ps-header-title-font-size' (see below).
@@ -362,6 +368,65 @@ Please send all bug fixes and enhancements to
 ;; for your printer.
 ;;
 ;;
+;; Control And 8-bit Characters
+;; ----------------------------
+;;
+;; The variable `ps-print-control-characters' specifies whether you want to see
+;; a printable form for control and 8-bit characters, that is, instead of
+;; sending, for example, a ^D (\004) to printer, it is sent the string "^D".
+;;
+;; Valid values for `ps-print-control-characters' are:
+;;
+;;  8-bit           This is the value to use when you want an ascii encoding of
+;;                  any control or non-ascii character. Control characters are
+;;                  encoded as "^D", and non-ascii characters have an
+;;                  octal encoding.
+;;
+;;  control-8-bit   This is the value to use when you want an ascii encoding of
+;;                  any control character, whether it is 7 or 8-bit.
+;;                  European 8-bits accented characters are printed according
+;;                  the current font.
+;;
+;;  control         Only ascii control characters have an ascii encoding.
+;;                  European 8-bits accented characters are printed according
+;;                  the current font.
+;;
+;;  nil             No ascii encoding. Any character is printed according the
+;;                  current font.
+;;
+;; Any other value is treated as nil.
+;;
+;; The default is `control-8-bit'.
+;;
+;; Characters TAB, NEWLINE and FORMFEED are always treated by ps-print engine.
+;;
+;;
+;; Printing Multi-Byte Buffer
+;; --------------------------
+;;
+;; ps-print can print multi-byte buffer.
+;;
+;; If you are using only Latin-1 characters, you don't need to do anything else.
+;;
+;; If you have a japanese or korean PostScript printer, you can print ASCII,
+;; Latin-1, Japanese (JISX0208, and JISX0201-Kana) and Korean characters by
+;; setting:
+;;
+;;     (setq ps-mule-font-info-database ps-mule-font-info-database-ps)
+;;
+;; At present, it was not tested the korean characters printing.  If you have
+;; a korean PostScript printer, please verify it.
+;;
+;; If you use any other kind of character, you need to install intlfonts-1.1.
+;; So you can print using BDF fonts contained in intlfonts-1.1.  To print using
+;; BDF fonts, do the following settings:
+;;
+;;   (1) Set the variable `bdf-directory-list' appropriately (see bdf.el for
+;;       documentation of this variable).
+;;
+;;   (2) (setq ps-mule-font-info-database-ps ps-mule-font-info-database-bdf)
+;;
+;;
 ;; Line Number
 ;; -----------
 ;;
@@ -398,7 +463,28 @@ Please send all bug fixes and enhancements to
 ;; See also section How Ps-Print Has A Text And/Or Image On Background.
 ;;
 ;;
-;; Font managing
+;; Hooks
+;; -----
+;;
+;; Ps-print has the following hook variables:
+;;
+;; `ps-print-hook'
+;;    It is evaluated once before any printing process.  This is the right
+;;    place to initialize ps-print global data.
+;;    For an example, see section Adding a New Font Family.
+;;
+;; `ps-print-begin-page-hook'
+;;    It is evaluated on each real beginning of page, that is, ps-print
+;;    considers each beginning of column as a beginning of page, and a real
+;;    beginning of page is when the beginning of column coincides with a
+;;    paper change on your printer.
+;;
+;; `ps-print-begin-column-hook'
+;;    It is evaluated on each beginning of column, except in the beginning
+;;    of column that `ps-print-begin-page-hook' is evaluated.
+;;
+;;
+;; Font Managing
 ;; -------------
 ;;
 ;; Ps-print now knows rather precisely some fonts:
@@ -416,7 +502,7 @@ Please send all bug fixes and enhancements to
 ;; which lists the currently available font families.
 ;;
 ;; The variable `ps-font-size' determines the size (in points)
-;; of the font for ordinary text, when generating Postscript.
+;; of the font for ordinary text, when generating PostScript.
 ;; Its value is a float.
 ;;
 ;; Similarly, the variable `ps-header-font-family' determines
@@ -427,7 +513,7 @@ Please send all bug fixes and enhancements to
 ;; in points, for the top line of text in the header.
 ;;
 ;;
-;; Adding a new font family
+;; Adding a New Font Family
 ;; ------------------------
 ;;
 ;; To use a new font family, you MUST first teach ps-print
@@ -453,11 +539,17 @@ Please send all bug fixes and enhancements to
 ;;
 ;; - Add these values to the `ps-font-info-database':
 ;;   (setq ps-font-info-database
-;;      (append
-;;       '((Helvetica ; the family name
-;;         "Helvetica" "Helvetica-Bold" "Helvetica-Oblique" "Helvetica-BoldOblique"
-;;         10.0 11.56 2.78 5.09243))
-;;       ps-font-info-database))
+;;        (append
+;;         '((Helvetica                        ; the family key
+;;            (fonts (normal      . "Helvetica")
+;;                   (bold        . "Helvetica-Bold")
+;;                   (italic      . "Helvetica-Oblique")
+;;                   (bold-italic . "Helvetica-BoldOblique"))
+;;            (size . 10.0)
+;;            (line-height . 11.56)
+;;            (space-width . 2.78)
+;;            (avg-char-width . 5.09243)))
+;;         ps-font-info-database))
 ;; - Now you can use this font family with any size:
 ;;     (setq ps-font-family 'Helvetica)
 ;; - if you want to use this family in another emacs session, you must
@@ -466,18 +558,46 @@ Please send all bug fixes and enhancements to
 ;;     (setq ps-font-info-database (append ...)))
 ;;   if you don't want to load ps-print, you have to copy the whole value:
 ;;     (setq ps-font-info-database '(<your stuff> <the standard stuff>))
-;;   or, if you can wait until the `ps-print-hook' is implemented, do:
-;;      (add-hook 'ps-print-hook '(setq ps-font-info-database (append ...)))
-;;      This does not work yet, since there is no `ps-print-hook' yet.
+;;   or, use `ps-print-hook' (see section Hooks):
+;;     (add-hook 'ps-print-hook
+;;               '(lambda () (setq ps-font-info-database (append ...))))
 ;;
 ;; You can create new `mixed' font families like:
-;;     (my-mixed-family
-;;      "Courier-Bold" "Helvetica"
-;;      "Zapf-Chancery-MediumItalic" "NewCenturySchlbk-BoldItalic"
-;;      10.0 10.55 6.0 6.0)
+;;      (my-mixed-family
+;;       (fonts (normal               . "Courier-Bold")
+;;              (bold                 . "Helvetica")
+;;              (italic               . "Zapf-Chancery-MediumItalic")
+;;              (bold-italic          . "NewCenturySchlbk-BoldItalic")
+;;              (w3-table-hack-x-face . "LineDrawNormal"))
+;;       (size . 10.0)
+;;       (line-height . 10.55)
+;;       (space-width . 6.0)
+;;       (avg-char-width . 6.0))
 ;; Now you can use your new font family with any size:
 ;;     (setq ps-font-family 'my-mixed-family)
 ;;
+;; Note that on above example the `w3-table-hack-x-face' entry refers to
+;; a face symbol, so when printing this face it'll be used the font
+;; `LineDrawNormal'.  If the face  `w3-table-hack-x-face'  is remapped to
+;; use bold and/or italic attribute, the corresponding entry (bold, italic
+;; or bold-italic) will be used instead of `w3-table-hack-x-face' entry.
+;;
+;; Note also that the font family entry order is irrelevant, so the above
+;; example could also be written:
+;;      (my-mixed-family
+;;       (size . 10.0)
+;;       (fonts (w3-table-hack-x-face . "LineDrawNormal")
+;;              (bold                 . "Helvetica")
+;;              (bold-italic          . "NewCenturySchlbk-BoldItalic")
+;;              (italic               . "Zapf-Chancery-MediumItalic")
+;;              (normal               . "Courier-Bold"))
+;;       (avg-char-width . 6.0)
+;;       (space-width . 6.0)
+;;       (line-height . 10.55))
+;;
+;; Despite the note above, it is recommended that some convention about
+;; entry order be used.
+;;
 ;; You can get information on all the fonts resident in YOUR printer
 ;; by uncommenting the line:
 ;;     % 3 cm 20 cm moveto  ReportAllFontInfo           showpage
@@ -497,15 +617,16 @@ Please send all bug fixes and enhancements to
 ;; always right.  For example, you might want to map colors into faces
 ;; so that blue faces print in bold, and red faces in italic.
 ;;
-;; It is possible to force ps-print to consider specific faces bold or
-;; italic, no matter what font they are displayed in, by setting the
-;; variables `ps-bold-faces' and `ps-italic-faces'.  These variables
-;; contain lists of faces that ps-print should consider bold or
-;; italic; to set them, put code like the following into your .emacs
-;; file:
+;; It is possible to force ps-print to consider specific faces bold,
+;; italic or underline, no matter what font they are displayed in, by setting
+;; the variables `ps-bold-faces', `ps-italic-faces' and `ps-underlined-faces'.
+;; These variables contain lists of faces that ps-print should consider bold,
+;; italic or underline; to set them, put code like the following into your
+;; .emacs file:
 ;;
-;;     (setq ps-bold-faces '(my-blue-face))
+;;      (setq ps-bold-faces '(my-blue-face))
 ;;      (setq ps-italic-faces '(my-red-face))
+;;      (setq ps-underlined-faces '(my-green-face))
 ;;
 ;; Faces like bold-italic that are both bold and italic should go in
 ;; *both* lists.
@@ -519,7 +640,9 @@ Please send all bug fixes and enhancements to
 ;; get out of sync, if a face changes, or if new faces are added.  To
 ;; get the lists back in sync, you can set the variable
 ;; `ps-build-face-reference' to t, and the lists will be rebuilt the
-;; next time ps-print is invoked.
+;; next time ps-print is invoked.  If you need that the lists always be
+;; rebuilt when ps-print is invoked, set the variable
+;; `ps-always-build-face-reference' to t.
 ;;
 ;;
 ;; How Ps-Print Deals With Color
@@ -579,7 +702,7 @@ Please send all bug fixes and enhancements to
 ;;          "LeftMargin" "BottomMargin PrintHeight add" ; X and Y position
 ;;                                      ; (upper left corner)
 ;;          nil nil nil
-;;          "PrintHeight neg PrintWidth atan" ; angle
+;;          "PrintHeight neg PrintPageWidth atan" ; angle
 ;;          5 (11 . 17))                ; page list
 ;;         ))
 ;;
@@ -649,8 +772,25 @@ Please send all bug fixes and enhancements to
 ;; New since version 2.8
 ;; ---------------------
 ;;
-;; [vinicius] 970809 Vinicius Jose Latorre <vinicius@cpqd.br>
+;; [keinichi] 980819 Kein'ichi Handa <handa@etl.go.jp>
+;;
+;; Multi-byte buffer handling.
+;;
+;; [vinicius] 980306 Vinicius Jose Latorre <vinicius@cpqd.com.br>
+;;
+;; Skip invisible text.
+;;
+;; [vinicius] 971130 Vinicius Jose Latorre <vinicius@cpqd.com.br>
+;;
+;; Hooks: `ps-print-hook', `ps-print-begin-page-hook' and
+;; `ps-print-begin-column-hook'.
+;; Put one header per page over the columns.
+;; Better database font management.
+;; Better control characters handling.
 ;;
+;; [vinicius] 971121 Vinicius Jose Latorre <vinicius@cpqd.com.br>
+;;
+;; Dynamic evaluation at print time of `ps-lpr-switches'.
 ;; Handle control characters.
 ;; Face remapping.
 ;; New face attributes.
@@ -678,12 +818,12 @@ Please send all bug fixes and enhancements to
 ;; Automatic font-attribute detection doesn't work well, especially
 ;; with hilit19 and older versions of get-create-face.  Users having
 ;; problems with auto-font detection should use the lists
-;; `ps-italic-faces' and `ps-bold-faces' and/or turn off automatic
-;; detection by setting `ps-auto-font-detect' to nil.
+;; `ps-italic-faces', `ps-bold-faces' and `ps-underlined-faces' and/or
+;; turn off automatic detection by setting `ps-auto-font-detect' to nil.
 ;;
 ;; Automatic font-attribute detection doesn't work with XEmacs 19.12
-;; in tty mode; use the lists `ps-italic-faces' and `ps-bold-faces'
-;; instead.
+;; in tty mode; use the lists `ps-italic-faces', `ps-bold-faces' and
+;; `ps-underlined-faces' instead.
 ;;
 ;; Still too slow; could use some hand-optimization.
 ;;
@@ -702,10 +842,8 @@ Please send all bug fixes and enhancements to
 ;; Things to change:
 ;; ----------------
 ;;
-;; Add `ps-print-hook' (I don't know how to do that (yet!)).
-;; Add 4-up capability (really needed?).
+;; Avoid page break inside a paragraph.
 ;; Add `ps-non-bold-faces' and `ps-non-italic-faces' (should be easy).
-;; Put one header per page over the columns (easy but needed?).
 ;; Improve the memory management for big files (hard?).
 ;; `ps-nb-pages-buffer' and `ps-nb-pages-region' should take care
 ;; of folding lines.
@@ -713,6 +851,39 @@ Please send all bug fixes and enhancements to
 ;;
 ;; Acknowledgements
 ;; ----------------
+;;
+;; Thanks to Kein'ichi Handa <handa@etl.go.jp> for multi-byte buffer handling.
+;;
+;; Thanks to Matthew O Persico <Matthew.Persico@lazard.com> for line number on
+;; empty columns.
+;;
+;; Thanks to Theodore Jump <tjump@cais.com> for adjust PostScript code order on
+;; last page.
+;;
+;; Thanks to Roland Ducournau <ducour@lirmm.fr> for
+;; `ps-print-control-characters' variable documentation.
+;;
+;; Thanks to Marcus G Daniels <marcus@cathcart.sysc.pdx.edu> for a better
+;; database font management.
+;;
+;; Thanks to Martin Boyer <gamin@videotron.ca> for some ideas on putting one
+;; header per page over the columns and correct line numbers when printing a
+;; region.
+;;
+;; Thanks to Steven L Baur <steve@miranova.com> for dynamic evaluation at
+;; print time of `ps-lpr-switches'.
+;;
+;; Thanks to Kevin Rodgers <kevinr@ihs.com> for handling control characters
+;; (his code was severely modified, but the main idea was kept).
+;;
+;; Thanks to some suggestions on:
+;;  * Face color map: Marco Melgazzi <marco@techie.com>
+;;  * XEmacs compatibility: William J. Henney <will@astrosmo.unam.mx>
+;;  * Check `ps-paper-type': Sudhakar Frederick <sfrederi@asc.corp.mot.com>
+;;
+;; Thanks to Jacques Duthen <duthen@cegelec-red.fr> (Jack) for the 3.4 version
+;; I started from. [vinicius]
+;;
 ;; Thanks to Jim Thompson <?@?> for the 2.8 version I started from.
 ;; [jack]
 ;;
@@ -741,9 +912,6 @@ Please send all bug fixes and enhancements to
 
 ;;; Code:
 
-(eval-when-compile
-  (require 'cl))
-
 (unless (featurep 'lisp-float-type)
   (error "`ps-print' requires floating point support"))
 
@@ -795,6 +963,30 @@ Please send all bug fixes and enhancements to
   :group 'faces)
 
 
+(defcustom ps-printer-name printer-name
+  "*The name of a local printer for printing PostScript files.
+
+On Unix-like systems, a string value should be a name understood by
+lpr's -P option; otherwise the value should be nil.
+
+On MS-DOS and MS-Windows systems, if the value is a string, then it is
+taken as the name of the device to which PostScript files are written.
+By default it is the same as `printer-name'; 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 a name of a file, in which case the output gets appended to that
+file.  \(Note that `ps-print' package already has facilities for
+printing to a file, so you might as well use them instead of changing
+the setting of this variable.\) If you want to silently discard the
+printed output, set this to \"NUL\".
+
+On DOS/Windows, if the value is anything but a string, PostScript files
+will be piped to the program given by `ps-lpr-command', with switches
+given by `ps-lpr-switches', which see."
+  :type '(choice file (other :tag "Pipe to ps-lpr-command" pipe))
+  :group 'ps-print)
+
 (defcustom ps-lpr-command lpr-command
   "*The shell command for printing a PostScript file."
   :type 'string
@@ -846,6 +1038,7 @@ see `ps-paper-type'."
                       (number :tag "Height")))
   :group 'ps-print)
 
+;;;###autoload
 (defcustom ps-paper-type 'letter
   "*Specifies the size of paper to format for.
 Should be one of the paper types defined in `ps-page-dimensions-database', for
@@ -863,6 +1056,35 @@ example `letter', `legal' or `a4'."
   :type 'boolean
   :group 'ps-print)
 
+(defcustom ps-print-control-characters 'control-8-bit
+  "*Specifies the printable form for control and 8-bit characters.
+That is, instead of sending, for example, a ^D (\004) to printer,
+it is sent the string \"^D\".
+
+Valid values are:
+
+  `8-bit'         This is the value to use when you want an ASCII encoding of
+                  any control or non-ASCII character.  Control characters are
+                  encoded as \"^D\", and non-ascii characters have an
+                  octal encoding.
+
+  `control-8-bit' This is the value to use when you want an ASCII encoding of
+                  any control character, whether it is 7 or 8-bit.
+                  European 8-bits accented characters are printed according
+                  the current font.
+
+  `control'       Only ascii control characters have an ASCII encoding.
+                  European 8-bits accented characters are printed according
+                  the current font.
+
+  nil             No ASCII encoding.  Any character is printed according the
+                  current font.
+
+Any other value is treated as nil."
+  :type '(choice (const 8-bit) (const control-8-bit)
+                (const control) (other :tag "nil" nil))
+  :group 'ps-print)
+
 (defcustom ps-number-of-columns (if ps-landscape-mode 2 1)
   "*Specifies the number of columns"
   :type 'number
@@ -1047,6 +1269,14 @@ customizable by changing variables `ps-left-header' and
   :type 'boolean
   :group 'ps-print-header)
 
+(defcustom ps-print-only-one-header nil
+  "*Non-nil means print only one header at the top of each page.
+This is useful when printing more than one column, so it is possible
+to have only one header over all columns or one header per column.
+See also `ps-print-header'."
+  :type 'boolean
+  :group 'ps-print-header)
+
 (defcustom ps-print-header-frame t
   "*Non-nil means draw a gaudy frame around the header."
   :type 'boolean
@@ -1080,53 +1310,107 @@ the left on even-numbered pages."
 
 (defcustom ps-font-info-database
   '((Courier                           ; the family key
-     "Courier" "Courier-Bold" "Courier-Oblique" "Courier-BoldOblique"
-     10.0 10.55 6.0     6.0)
+     (fonts (normal      . "Courier")
+           (bold        . "Courier-Bold")
+           (italic      . "Courier-Oblique")
+           (bold-italic . "Courier-BoldOblique"))
+     (size . 10.0)
+     (line-height . 10.55)
+     (space-width . 6.0)
+     (avg-char-width . 6.0))
     (Helvetica                         ; the family key
-     "Helvetica" "Helvetica-Bold" "Helvetica-Oblique" "Helvetica-BoldOblique"
-     10.0 11.56 2.78    5.09243)
+     (fonts (normal      . "Helvetica")
+           (bold        . "Helvetica-Bold")
+           (italic      . "Helvetica-Oblique")
+           (bold-italic . "Helvetica-BoldOblique"))
+     (size . 10.0)
+     (line-height . 11.56)
+     (space-width . 2.78)
+     (avg-char-width . 5.09243))
     (Times
-     "Times-Roman" "Times-Bold" "Times-Italic" "Times-BoldItalic"
-     10.0 11.0  2.5     4.71432)
+     (fonts (normal      . "Times-Roman")
+           (bold        . "Times-Bold")
+           (italic      . "Times-Italic")
+           (bold-italic . "Times-BoldItalic"))
+     (size . 10.0)
+     (line-height . 11.0)
+     (space-width . 2.5)
+     (avg-char-width 4.71432))
     (Palatino
-     "Palatino-Roman" "Palatino-Bold" "Palatino-Italic" "Palatino-BoldItalic"
-     10.0 12.1  2.5     5.08676)
+     (fonts (normal      . "Palatino-Roman")
+           (bold        . "Palatino-Bold")
+           (italic      . "Palatino-Italic")
+           (bold-italic . "Palatino-BoldItalic"))
+     (size . 10.0)
+     (line-height . 12.1)
+     (space-width . 2.5)
+     (avg-char-width . 5.08676))
     (Helvetica-Narrow
-     "Helvetica-Narrow" "Helvetica-Narrow-Bold"
-     "Helvetica-Narrow-Oblique" "Helvetica-Narrow-BoldOblique"
-     10.0 11.56 2.2796  4.17579)
+     (fonts (normal      . "Helvetica-Narrow")
+           (bold        . "Helvetica-Narrow-Bold")
+           (italic      . "Helvetica-Narrow-Oblique")
+           (bold-italic . "Helvetica-Narrow-BoldOblique"))
+     (size . 10.0)
+     (line-height . 11.56)
+     (space-width . 2.2796)
+     (avg-char-width . 4.17579))
     (NewCenturySchlbk
-     "NewCenturySchlbk-Roman" "NewCenturySchlbk-Bold"
-     "NewCenturySchlbk-Italic" "NewCenturySchlbk-BoldItalic"
-     10.0 12.15 2.78    5.31162)
+     (fonts (normal      . "NewCenturySchlbk-Roman")
+           (bold        . "NewCenturySchlbk-Bold")
+           (italic      . "NewCenturySchlbk-Italic")
+           (bold-italic . "NewCenturySchlbk-BoldItalic"))
+     (size . 10.0)
+     (line-height 12.15)
+     (space-width . 2.78)
+     (avg-char-width . 5.31162))
     ;; got no bold for the next ones
     (AvantGarde-Book
-     "AvantGarde-Book" "AvantGarde-Book"
-     "AvantGarde-BookOblique" "AvantGarde-BookOblique"
-     10.0 11.77 2.77    5.45189)
+     (fonts (normal . "AvantGarde-Book")
+           (italic . "AvantGarde-BookOblique"))
+     (size . 10.0)
+     (line-height . 11.77)
+     (space-width . 2.77)
+     (avg-char-width . 5.45189))
     (AvantGarde-Demi
-     "AvantGarde-Demi" "AvantGarde-Demi"
-     "AvantGarde-DemiOblique" "AvantGarde-DemiOblique"
-     10.0 12.72 2.8     5.51351)
+     (fonts (normal . "AvantGarde-Demi")
+           (italic . "AvantGarde-DemiOblique"))
+     (size . 10.0)
+     (line-height . 12.72)
+     (space-width . 2.8)
+     (avg-char-width . 5.51351))
     (Bookman-Demi
-     "Bookman-Demi" "Bookman-Demi"
-     "Bookman-DemiItalic" "Bookman-DemiItalic"
-     10.0 11.77 3.4     6.05946)
+     (fonts (normal . "Bookman-Demi")
+           (italic . "Bookman-DemiItalic"))
+     (size . 10.0)
+     (line-height . 11.77)
+     (space-width . 3.4)
+     (avg-char-width . 6.05946))
     (Bookman-Light
-     "Bookman-Light" "Bookman-Light"
-     "Bookman-LightItalic" "Bookman-LightItalic"
-     10.0 11.79 3.2     5.67027)
+     (fonts (normal . "Bookman-Light")
+           (italic . "Bookman-LightItalic"))
+     (size . 10.0)
+     (line-height . 11.79)
+     (space-width . 3.2)
+     (avg-char-width . 5.67027))
     ;; got no bold and no italic for the next ones
     (Symbol
-     "Symbol" "Symbol" "Symbol" "Symbol"
-     10.0 13.03 2.5     3.24324)
+     (fonts (normal . "Symbol"))
+     (size . 10.0)
+     (line-height . 13.03)
+     (space-width . 2.5)
+     (avg-char-width . 3.24324))
     (Zapf-Dingbats
-     "Zapf-Dingbats" "Zapf-Dingbats" "Zapf-Dingbats" "Zapf-Dingbats"
-     10.0  9.63 2.78    2.78)
+     (fonts (normal . "Zapf-Dingbats"))
+     (size . 10.0)
+     (line-height . 9.63)
+     (space-width . 2.78)
+     (avg-char-width . 2.78))
     (Zapf-Chancery-MediumItalic
-     "Zapf-Chancery-MediumItalic" "Zapf-Chancery-MediumItalic"
-     "Zapf-Chancery-MediumItalic" "Zapf-Chancery-MediumItalic"
-     10.0 11.45 2.2     4.10811)
+     (fonts (normal . "Zapf-Chancery-MediumItalic"))
+     (size . 10.0)
+     (line-height . 11.45)
+     (space-width . 2.2)
+     (avg-char-width . 4.10811))
     )
   "*Font info database: font family (the key), name, bold, italic, bold-italic,
 reference size, line height, space width, average character width.
@@ -1141,15 +1425,22 @@ To get the info for another specific font (say Helvetica), do the following:
 - add the values to `ps-font-info-database'.
 You can get all the fonts of YOUR printer using `ReportAllFontInfo'."
   :type '(repeat (list :tag "Font Definition"
-                      (symbol :tag "Font")
-                      (string :tag "Name")
-                      (string :tag "Bold")
-                      (string :tag "Italic")
-                      (string :tag "Bold-Italic")
-                      (number :tag "Reference Size")
-                      (number :tag "Line Height")
-                      (number :tag "Space Width")
-                      (number :tag "Average Character Width")))
+                      (symbol :tag "Font Family")
+                      (cons (const fonts)
+                            (repeat (cons (choice (const normal)
+                                                  (const bold)
+                                                  (const italic)
+                                                  (const bold-italic)
+                                                  (symbol :tag "Face"))
+                                          (string :tag "Font Name"))))
+                      (cons (const size)
+                            (number :tag "Reference Size"))
+                      (cons (const line-height)
+                            (number :tag "Line Height"))
+                      (cons (const space-width)
+                            (number :tag "Space Width"))
+                      (cons (const avg-char-width)
+                            (number :tag "Average Character Width"))))
   :group 'ps-print-font)
 
 (defcustom ps-font-family 'Courier
@@ -1173,8 +1464,7 @@ You can get all the fonts of YOUR printer using `ReportAllFontInfo'."
   :group 'ps-print-font)
 
 (defcustom ps-header-title-font-size (if ps-landscape-mode 12 14)
-  "Font size, in points, for the top line of text in the header,
-when generating PostScript."
+  "Font size, in points, for the top line of text in header, in PostScript."
   :type 'number
   :group 'ps-print-font)
 
@@ -1182,7 +1472,8 @@ when generating PostScript."
 
 ;; Printing color requires x-color-values.
 (defcustom ps-print-color-p (or (fboundp 'x-color-values) ; Emacs
-                               (fboundp 'pixel-components)) ; XEmacs
+                               (fboundp 'color-instance-rgb-components))
+                                       ; XEmacs
   "*If non-nil, print the buffer's text in color."
   :type 'boolean
   :group 'ps-print-color)
@@ -1231,7 +1522,7 @@ This applies to generating PostScript."
 (defcustom ps-underlined-faces
   (unless ps-print-color-p
     '(font-lock-function-name-face
-      font-lock-reference-face
+      font-lock-constant-face
       font-lock-warning-face))
   "*A list of the \(non-underlined\) faces that should be printed underlined.
 This applies to generating PostScript."
@@ -1301,7 +1592,7 @@ about its setting, though."
 
 If this variable is non-nil, ps-print will rebuild its internal
 reference lists of bold and italic faces *every* time one of the
--with-faces commands is called.  Most users shouldn't need to set this
+...-with-faces commands is called.  Most users shouldn't need to set this
 variable."
   :type 'boolean
   :group 'ps-print-face)
@@ -1436,7 +1727,7 @@ The table depends on the current ps-print setup."
 
 ;;;###autoload
 (defun ps-setup ()
-  "Return the current setup."
+  "Return the current PostScript-generation setup."
   (format
    "
 \(setq ps-print-color-p  %s
@@ -1451,6 +1742,8 @@ The table depends on the current ps-print setup."
       ps-zebra-stripe-height %s
       ps-line-number         %s
 
+      ps-print-control-characters %s
+
       ps-print-background-image %s
 
       ps-print-background-text %s
@@ -1483,6 +1776,7 @@ The table depends on the current ps-print setup."
    ps-zebra-stripes
    ps-zebra-stripe-height
    ps-line-number
+   ps-print-control-characters
    ps-print-background-image
    ps-print-background-text
    ps-left-margin
@@ -1519,36 +1813,22 @@ The table depends on the current ps-print setup."
   (require 'faces))                    ; face-font, face-underline-p,
                                        ; x-font-regexp
 
-(require 'time-stamp)
-
-(defvar ps-font nil
-  "Font family name for ordinary text, when generating PostScript.")
-
-(defvar ps-font-bold nil
-  "Font family name for bold text, when generating PostScript.")
+;; Return t if the device (which can be changed during an emacs session)
+;; can handle colors.
+;; This is function is not yet implemented for GNU emacs.
+(cond ((and (eq ps-print-emacs-type 'xemacs)
+           (>= emacs-minor-version 12)) ; xemacs
+       (defun ps-color-device ()
+        (eq (device-class) 'color))
+       )
 
-(defvar ps-font-italic nil
-  "Font family name for italic text, when generating PostScript.")
+      (t                               ; emacs
+       (defun ps-color-device ()
+        t)
+       ))
 
-(defvar ps-font-bold-italic nil
-  "Font family name for bold italic text, when generating PostScript.")
 
-(defvar ps-avg-char-width nil
-  "The average width, in points, of a character, for generating PostScript.
-This is the value that ps-print uses to determine the length,
-x-dimension, of the text it has printed, and thus affects the point at
-which long lines wrap around.")
-
-(defvar ps-space-width nil
-  "The width of a space character, for generating PostScript.
-This value is used in expanding tab characters.")
-
-(defvar ps-line-height nil
-  "The height of a line, for generating PostScript.
-This is the value that ps-print uses to determine the height,
-y-dimension, of the lines of text it has printed, and thus affects the
-point at which page-breaks are placed.
-The line-height is *not* the same as the point size of the font.")
+(require 'time-stamp)
 
 (defvar ps-print-prologue-1
   "% ISOLatin1Encoding stolen from ps_init.ps in GhostScript 2.6.1.4:
@@ -1611,8 +1891,10 @@ StandardEncoding 46 82 getinterval aload pop
     } forall           % Copy each of the symbols from the old dictionary
                        % to the new one except for the font ID.
 
-    /Encoding ISOLatin1Encoding def    % Override the encoding with
+    currentdict /FontType get 0 ne {
+      /Encoding ISOLatin1Encoding def  % Override the encoding with
                                        % the ISOLatin1 encoding.
+    } if
 
     % Use the font's bounding box to determine the ascent, descent,
     % and overall height; don't forget that these values have to be
@@ -1630,9 +1912,17 @@ StandardEncoding 46 82 getinterval aload pop
 %             |    |   v Descent (usually < 0)
 % (x1 y1) --> +----+ - -
 
-    FontBBox                           % -- x1 y1 x2 y2
-    FontMatrix transform /Ascent  exch def pop
-    FontMatrix transform /Descent exch def pop
+    currentdict /FontType get 0 ne {
+      /FontBBox load aload pop                 % -- x1 y1 x2 y2
+      FontMatrix transform /Ascent  exch def pop
+      FontMatrix transform /Descent exch def pop
+    } {
+      /PrimaryFont FDepVector 0 get def
+      PrimaryFont /FontBBox get aload pop
+      PrimaryFont /FontMatrix get transform /Ascent exch def pop
+      PrimaryFont /FontMatrix get transform /Descent exch def pop
+    } ifelse
+
     /FontHeight Ascent Descent sub def % use `sub' because descent < 0
 
     % Define these in case they're not in the FontInfo
@@ -1640,9 +1930,9 @@ StandardEncoding 46 82 getinterval aload pop
     /UnderlinePosition  Descent 0.70 mul def
     /OverlinePosition   Descent UnderlinePosition sub Ascent add def
     /StrikeoutPosition  Ascent 0.30 mul def
-    /LineThickness      0  50 FontMatrix transform exch pop def
-    /Xshadow            0  80 FontMatrix transform exch pop def
-    /Yshadow            0 -90 FontMatrix transform exch pop def
+    /LineThickness      FontHeight 0.05 mul def
+    /Xshadow            FontHeight  0.08 mul def
+    /Yshadow            FontHeight -0.09 mul def
     /SpaceBackground    Descent neg UnderlinePosition add def
     /XBox               Descent neg def
     /YBox               LineThickness 0.7 mul def
@@ -1845,26 +2135,30 @@ StandardEncoding 46 82 getinterval aload pop
 
 % stack:  --
 /doLineNumber {
-  currentfont
-  gsave
-  0.0 0.0 0.0 setrgbcolor
-  /L0 findfont setfont
-  LineNumber Lines ge
-    {(end      )}
-    {LineNumber 6 string cvs (      ) strcat}
-  ifelse
-  dup stringwidth pop neg 0 rmoveto
-  show
-  grestore
-  setfont
-  /LineNumber LineNumber 1 add def
+  /LineNumber where
+  {
+    pop
+    currentfont
+    gsave
+    0.0 0.0 0.0 setrgbcolor
+    /L0 findfont setfont
+    LineNumber Lines ge
+      {(end      )}
+      {LineNumber 6 string cvs (      ) strcat}
+    ifelse
+    dup stringwidth pop neg 0 rmoveto
+    show
+    grestore
+    setfont
+    /LineNumber LineNumber 1 add def
+  } if
 } def
 
 % stack: --
 /printZebra {
   gsave
   0.985 setgray
-  /double-zebra NumberOfZebra NumberOfZebra add def
+  /double-zebra ZebraHeight ZebraHeight add def
   /yiter double-zebra LineHeight mul neg def
   /xiter PrintWidth InterColumn add def
   NumberOfColumns {LinesPerColumn doColumnZebra xiter 0 rmoveto}repeat
@@ -1874,9 +2168,9 @@ StandardEncoding 46 82 getinterval aload pop
 % stack:  lines-per-column |- --
 /doColumnZebra {
   gsave
-  dup double-zebra idiv {NumberOfZebra doZebra 0 yiter rmoveto}repeat
+  dup double-zebra idiv {ZebraHeight doZebra 0 yiter rmoveto}repeat
   double-zebra mod
-  dup 0 le {pop}{dup NumberOfZebra gt {pop NumberOfZebra}if doZebra}ifelse
+  dup 0 le {pop}{dup ZebraHeight gt {pop ZebraHeight}if doZebra}ifelse
   grestore
 } def
 
@@ -1923,6 +2217,8 @@ StandardEncoding 46 82 getinterval aload pop
 } def
 
 /BeginDoc {
+  % ---- Remember space width of the normal text font `f0'.
+  /SpaceWidth /f0 findfont setfont ( ) stringwidth pop def
   % ---- save the state of the document (useful for ghostscript!)
   /docState save def
   % ---- [jack] Kludge: my ghostscript window is 21x27.7 instead of 21x29.7
@@ -1957,6 +2253,8 @@ StandardEncoding 46 82 getinterval aload pop
   /columnState save def
 } def
 
+/PrintHeaderWidth PrintOnlyOneHeader{PrintPageWidth}{PrintWidth}ifelse def
+
 /BeginPage {
   % ---- when 1st column, print all background effects
   ColumnIndex 1 eq {
@@ -1966,8 +2264,10 @@ StandardEncoding 46 82 getinterval aload pop
   printLocalBackground
   } if
   PrintHeader {
-    PrintHeaderFrame { HeaderFrame } if
-    HeaderText
+    PrintOnlyOneHeader{ColumnIndex 1 eq}{true}ifelse {
+      PrintHeaderFrame {HeaderFrame}if
+      HeaderText
+    } if
   } if
   0 PrintStartY moveto                 % move to where printing will start
   PLN
@@ -2020,10 +2320,10 @@ StandardEncoding 46 82 getinterval aload pop
 } def
 
 /HeaderFramePath {
-  PrintWidth    0                      rlineto
-  0             HeaderHeight           rlineto
-  PrintWidth neg 0                     rlineto
-  0             HeaderHeight neg       rlineto
+  PrintHeaderWidth     0                       rlineto
+  0                    HeaderHeight            rlineto
+  PrintHeaderWidth neg 0                       rlineto
+  0                    HeaderHeight neg        rlineto
 } def
 
 /HeaderFrame {
@@ -2093,7 +2393,7 @@ StandardEncoding 46 82 getinterval aload pop
     gsave
       dup xcheck { exec } if
       dup stringwidth pop
-      PrintWidth exch sub HeaderPad 2 mul sub 0 rmoveto
+      PrintHeaderWidth exch sub HeaderPad 2 mul sub 0 rmoveto
       show
     grestore
     0 HeaderLineHeight neg rmoveto
@@ -2170,9 +2470,12 @@ StandardEncoding 46 82 getinterval aload pop
 (defvar ps-output-head nil)
 (defvar ps-output-tail nil)
 
+(defvar ps-page-postscript 0)
 (defvar ps-page-count 0)
 (defvar ps-showline-count 1)
 
+(defvar ps-control-or-escape-regexp nil)
+
 (defvar ps-background-pages nil)
 (defvar ps-background-all-pages nil)
 (defvar ps-background-text-count 0)
@@ -2188,28 +2491,21 @@ StandardEncoding 46 82 getinterval aload pop
 (defvar ps-color-format
   (if (eq ps-print-emacs-type 'emacs)
 
-    ;;Emacs understands the %f format; we'll
-    ;;use it to limit color RGB values to
-    ;;three decimals to cut down some on the
-    ;;size of the PostScript output.
-    "%0.3f %0.3f %0.3f"
+      ;; Emacs understands the %f format; we'll use it to limit color RGB
+      ;; values to three decimals to cut down some on the size of the
+      ;; PostScript output.
+      "%0.3f %0.3f %0.3f"
 
-    ;; Lucid emacsen will have to make do with
-    ;; %s (princ) for floats.
+    ;; Lucid emacsen will have to make do with %s (princ) for floats.
     "%s %s %s"))
 
 ;; These values determine how much print-height to deduct when headers
 ;; are turned on.  This is a pretty clumsy way of handling it, but
 ;; it'll do for now.
 
-(defvar ps-header-font nil)
-(defvar ps-header-title-font nil)
-
-(defvar ps-header-line-height nil)
-(defvar ps-header-title-line-height nil)
 (defvar ps-header-pad 0
-  "Vertical and horizontal space in points (1/72 inch) between the header frame
-and the text it contains.")
+  "Vertical and horizontal space between the header frame and the text.
+This is in units of points (1/72 inch).")
 
 ;; Define accessors to the dimensions list.
 
@@ -2295,7 +2591,7 @@ See `ps-extend-face' for documentation."
 (defun ps-extend-face (face-extension &optional merge-p)
   "Extend face in `ps-print-face-extension-alist'.
 
-If optional MERGE-P is non-nil, extensions in FACE-EXTENSION-LIST are merged
+If optional MERGE-P is non-nil, extensions in FACE-EXTENSION list are merged
 with face extensions in `ps-print-face-extension-alist'; otherwise, overrides.
 
 The elements of FACE-EXTENSION list have the form:
@@ -2348,41 +2644,88 @@ If EXTENSION is any other symbol, it is ignored."
                                 0))))
     face-bit))
 
+\f
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; Adapted from font-lock:
+;; Originally face attributes were specified via `font-lock-face-attributes'.
+;; Users then changed the default face attributes by setting that variable.
+;; However, we try and be back-compatible and respect its value if set except
+;; for faces where M-x customize has been used to save changes for the face.
+
+(defun ps-font-lock-face-attributes ()
+  (and (boundp 'font-lock-mode) (symbol-value 'font-lock-mode)
+       (boundp 'font-lock-face-attributes)
+       (let ((face-attributes font-lock-face-attributes))
+        (while face-attributes
+          (let* ((face-attribute
+                  (car (prog1 face-attributes
+                         (setq face-attributes (cdr face-attributes)))))
+                 (face (car face-attribute)))
+            ;; Rustle up a `defface' SPEC from a
+            ;; `font-lock-face-attributes' entry.
+            (unless (get face 'saved-face)
+              (let ((foreground (nth 1 face-attribute))
+                    (background (nth 2 face-attribute))
+                    (bold-p (nth 3 face-attribute))
+                    (italic-p (nth 4 face-attribute))
+                    (underline-p (nth 5 face-attribute))
+                    face-spec)
+                (when foreground
+                  (setq face-spec (cons ':foreground
+                                        (cons foreground face-spec))))
+                (when background
+                  (setq face-spec (cons ':background
+                                        (cons background face-spec))))
+                (when bold-p
+                  (setq face-spec (append '(:bold t) face-spec)))
+                (when italic-p
+                  (setq face-spec (append '(:italic t) face-spec)))
+                (when underline-p
+                  (setq face-spec (append '(:underline t) face-spec)))
+                (custom-declare-face face (list (list t face-spec)) nil)
+                )))))))
+
 \f
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; Internal functions and variables
 
 
+(make-local-hook 'ps-print-hook)
+(make-local-hook 'ps-print-begin-page-hook)
+(make-local-hook 'ps-print-begin-column-hook)
+
+
 (defun ps-print-without-faces (from to &optional filename region-p)
-  (ps-printing-region region-p)
-  (ps-generate (current-buffer) from to 'ps-generate-postscript)
+  (ps-spool-without-faces from to region-p)
   (ps-do-despool filename))
 
 
 (defun ps-spool-without-faces (from to &optional region-p)
+  (run-hooks 'ps-print-hook)
   (ps-printing-region region-p)
   (ps-generate (current-buffer) from to 'ps-generate-postscript))
 
 
 (defun ps-print-with-faces (from to &optional filename region-p)
-  (ps-printing-region region-p)
-  (ps-generate (current-buffer) from to 'ps-generate-postscript-with-faces)
+  (ps-spool-with-faces from to region-p)
   (ps-do-despool filename))
 
 
 (defun ps-spool-with-faces (from to &optional region-p)
+  (run-hooks 'ps-print-hook)
   (ps-printing-region region-p)
   (ps-generate (current-buffer) from to 'ps-generate-postscript-with-faces))
 
 
 (defsubst ps-count-lines (from to)
   (+ (count-lines from to)
-     (save-excursion (goto-char to)
-                    (if (= (current-column) 0) 1 0))))
+     (save-excursion
+       (goto-char to)
+       (if (= (current-column) 0) 1 0))))
 
 
 (defvar ps-printing-region nil
-  "Variable used to indicate if it is printing a region.
+  "Variable used to indicate if ps-print is printing a region.
 If non-nil, it is a cons, the car of which is the line number
 where the region begins, and its cdr is the total number of lines
 in the buffer.  Formatting functions can use this information
@@ -2400,13 +2743,1059 @@ and to indicate in the header that the printout is of a partial file.")
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; Internal functions
 
+(defsubst ps-font-alist (font-sym)
+  (get font-sym 'fonts))
+
+(defun ps-font (font-sym font-type)
+  "Font family name for text of `font-type', when generating PostScript."
+  (let* ((font-list (ps-font-alist font-sym))
+        (normal-font (cdr (assq 'normal font-list))))
+    (while (and font-list (not (eq font-type (car (car font-list)))))
+      (setq font-list (cdr font-list)))
+    (or (cdr (car font-list)) normal-font)))
+
+(defun ps-fonts (font-sym)
+  (mapcar 'cdr (ps-font-alist font-sym)))
+
+(defun ps-font-number (font-sym font-type)
+  (or (ps-alist-position font-type (ps-font-alist font-sym))
+      0))
+
+(defsubst ps-line-height (font-sym)
+  "The height of a line, for generating PostScript.
+This is the value that ps-print uses to determine the height,
+y-dimension, of the lines of text it has printed, and thus affects the
+point at which page-breaks are placed.
+The line-height is *not* the same as the point size of the font."
+  (get font-sym 'line-height))
+
+(defsubst ps-title-line-height (font-sym)
+  "The height of a `title' line, for generating PostScript.
+This is the value that ps-print uses to determine the height,
+y-dimension, of the lines of text it has printed, and thus affects the
+point at which page-breaks are placed.
+The title-line-height is *not* the same as the point size of the font."
+  (get font-sym 'title-line-height))
+
+(defsubst ps-space-width (font-sym)
+  "The width of a space character, for generating PostScript.
+This value is used in expanding tab characters."
+  (get font-sym 'space-width))
+
+(defsubst ps-avg-char-width (font-sym)
+  "The average width, in points, of a character, for generating PostScript.
+This is the value that ps-print uses to determine the length,
+x-dimension, of the text it has printed, and thus affects the point at
+which long lines wrap around."
+  (get font-sym 'avg-char-width))
+
+\f
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; For handling multibyte characters.
+;;
+;; The following comments apply only to this part (through the next ^L).
+;; Author:     Kenichi Handa <handa@etl.go.jp>
+;; Maintainer: Kenichi Handa <handa@etl.go.jp>
+
+(eval-and-compile
+  (if (not (string< mule-version "4.0"))
+      (progn
+       (defalias 'ps-mule-next-point '1+)
+       (defalias 'ps-mule-chars-in-string 'length)
+       (defalias 'ps-mule-string-char 'aref)
+       (defsubst ps-mule-next-index (str i) (1+ i)))
+    (defun set-buffer-multibyte (arg)
+      (setq enable-multibyte-characters arg))
+    (defun string-as-unibyte (arg) arg)
+    (defun string-as-multibyte (arg) arg)
+    (defun charset-after (&optional arg)
+      (char-charset (char-after arg)))
+    (defun ps-mule-next-point (arg)
+      (save-excursion (goto-char arg) (forward-char 1) (point)))
+    (defun ps-mule-chars-in-string (string)
+      (/ (length string) (char-bytes (sref string 0))))
+    (defalias 'ps-mule-string-char 'sref)
+    (defun ps-mule-next-index (str i)
+      (+ i (char-bytes (sref str i)))))
+  )
+
+(defvar ps-mule-font-info-database
+  '((latin-iso8859-1
+     (normal nil nil iso-latin-1)))
+  "Alist of charsets vs the corresponding font information.
+Each element has the form:
+       (CHARSET (FONT-TYPE FONT-SRC FONT-NAME ENCODING BYTES) ...)
+where
+
+CHARSET is a charset (symbol) for this font family,
+
+FONT-TYPE is a type of font: normal, bold, italic, or bold-italic.
+
+FONT-SRC is a source of font: builtin, bdf, vflib, or nil.
+
+  If FONT-SRC is builtin, FONT-NAME is a buitin PostScript font name.
+
+  If FONT-SRC is bdf, FONT-NAME is a BDF font file name.  To use this
+  font, the external library `bdf' is required.
+
+  If FONT-SRC is vflib, FONT-NAME is name of font VFlib knows.  To use
+  this font, the external library `vflib' is required.
+
+  If FONT-SRC is nil, a proper ASCII font in the variable
+  `ps-font-info-database' is used.  This is useful for Latin-1
+  characters.
+
+ENCODING is a coding system to encode a string of characters of
+CHARSET into a proper string matching an encoding of the specified
+font.  ENCODING may be a function to call to do this encoding.  In
+this case, the function is called with one arguemnt, the string to
+encode, and it should return an encoded string.
+
+BYTES specifies how many bytes in encoded byte sequence construct esch
+character, it should be 1 or 2.
+
+All multibyte characters are printed by fonts specified in this
+database regardless of a font family of ASCII characters.  The
+exception is Latin-1 characters which are printed by the same font as
+ASCII characters, thus obey font family.
+
+See also the variable `ps-font-info-database'.")
+
+(defconst ps-mule-font-info-database-ps
+  '((katakana-jisx0201
+     (normal builtin "Ryumin-Light.Katakana" ps-mule-encode-7bit 1)
+     (bold builtin "GothicBBB-Medium.Katakana" ps-mule-encode-7bit 1)
+     (bold-italic builtin "GothicBBB-Medium.Katakana" ps-mule-encode-7bit 1))
+    (latin-jisx0201
+     (normat builtin "Ryumin-Light.Hankaku" ps-mule-encode-7bit 1)
+     (bold builtin "GothicBBB-Medium.Hankaku" ps-mule-encode-7bit 1))
+    (japanese-jisx0208
+     (normal builtin "Ryumin-Light-H" ps-mule-encode-7bit 2)
+     (bold builtin "GothicBBB-Medium-H" ps-mule-encode-7bit 2))
+    (korean-ksc5601
+     (normal builtin "Batang-Medium-KSC-H" ps-mule-encode-7bit 2)
+     (bold builtin " Gulim-Medium-KSC-H" ps-mule-encode-7bit 2))
+    )
+  "Sample setting of the `ps-mule-font-info-database' to use builtin PS font.
+
+Currently, data for Japanese and Korean PostScript printers are listed.")
+
+(defconst ps-mule-font-info-database-bdf
+  '((ascii
+     (normal bdf "etl24-latin1.bdf" nil 1)
+     (bold bdf "etl16b-latin1.bdf" iso-latin-1 1)
+     (italic bdf "etl16i-latin1.bdf" iso-latin-1 1)
+     (bold-italic bdf "etl16bi-latin1.bdf" iso-latin-1 1))
+    (latin-iso8859-1
+     (normal bdf "etl24-latin1.bdf" iso-latin-1 1)
+     (bold bdf "etl16b-latin1.bdf" iso-latin-1 1)
+     (italic bdf "etl16i-latin1.bdf" iso-latin-1 1)
+     (bold-italic bdf "etl16bi-latin1.bdf" iso-latin-1 1))
+    (latin-iso8859-1
+     (normal nil nil iso-latin-1))
+    (latin-iso8859-2
+     (normal bdf "etl24-latin2.bdf" iso-latin-2 1))
+    (latin-iso8859-3
+     (normal bdf "etl24-latin3.bdf" iso-latin-3 1))
+    (latin-iso8859-4
+     (normal bdf "etl24-latin4.bdf" iso-latin-4 1))
+    (thai-tis620
+     (normal bdf "thai-24.bdf" thai-tis620 1))
+    (greek-iso8859-7
+     (normal bdf "etl24-greek.bdf" greek-iso-8bit 1))
+    ;; (arabic-iso8859-6       nil) ; not yet available
+    (hebrew-iso8859-8
+     (normal bdf "etl24-hebrew.bdf" hebrew-iso-8bit 1))
+    (katakana-jisx0201
+     (normal bdf "12x24rk.bdf" ps-mule-encode-8bit 1))
+    (latin-jisx0201
+     (normal bdf "12x24rk.bdf" ps-mule-encode-7bit 1))
+    (cyrillic-iso8859-5
+     (normal bdf "etl24-cyrillic.bdf" cyrillic-iso-8bit 1))
+    (latin-iso8859-9
+     (normal bdf "etl24-latin5.bdf" iso-latin-5 1))
+    (japanese-jisx0208-1978
+     (normal bdf "jiskan24.bdf" ps-mule-encode-7bit 2))
+    (chinese-gb2312
+     (normal bdf "gb24st.bdf" ps-mule-encode-7bit 2))
+    (japanese-jisx0208
+     (normal bdf "jiskan24.bdf" ps-mule-encode-7bit 2))
+    (korean-ksc5601
+     (normal bdf "hanglm24.bdf" ps-mule-encode-7bit 2))
+    (japanese-jisx0212
+     (normal bdf "jisksp40.bdf" ps-mule-encode-7bit 2))
+    (chinese-cns11643-1
+     (normal bdf "cns-1-40.bdf" ps-mule-encode-7bit 2))
+    (chinese-cns11643-2
+     (normal bdf "cns-2-40.bdf" ps-mule-encode-7bit 2))
+    (chinese-big5-1
+     (normal bdf "taipei24.bdf" chinese-big5 2))
+    (chinese-big5-2
+     (normal bdf "taipei24.bdf" chinese-big5 2))
+    (chinese-sisheng
+     (normal bdf "etl24-sisheng.bdf" ps-mule-encode-8bit 1))
+    (ipa
+     (normal bdf "etl24-ipa.bdf" ps-mule-encode-8bit 1))
+    (vietnamese-viscii-lower
+     (normal bdf "etl24-viscii.bdf" vietnamese-viscii 1))
+    (vietnamese-viscii-upper
+     (normal bdf "etl24-viscii.bdf" vietnamese-viscii 1))
+    (arabic-digit
+     (normal bdf "etl24-arabic0.bdf" ps-mule-encode-7bit 1))
+    (arabic-1-column
+     (normal bdf "etl24-arabic1.bdf" ps-mule-encode-7bit 1))
+    ;; (ascii-right-to-left nil) ; not yet available
+    (lao
+     (normal bdf "mule-lao-24.bdf" lao 1))
+    (arabic-2-column
+     (normal bdf "etl24-arabic2.bdf" ps-mule-encode-7bit 1))
+    (indian-is13194
+     (normal bdf "mule-iscii-24.bdf" ps-mule-encode-7bit 1))
+    (indian-1-column
+     (normal bdf "mule-indian-1col-24.bdf" ps-mule-encode-7bit 2))
+    (tibetan-1-column
+     (normal bdf "mule-tibmdx-1col-24.bdf" ps-mule-encode-7bit 2))
+    (ethiopic
+     (normal bdf "ethiomx24f-uni.bdf" ps-mule-encode-ethiopic 2))
+    (chinese-cns11643-3
+     (normal bdf "cns-3-40.bdf" ps-mule-encode-7bit 2))
+    (chinese-cns11643-4
+     (normal bdf "cns-4-40.bdf" ps-mule-encode-7bit 2))
+    (chinese-cns11643-5
+     (normal bdf "cns-5-40.bdf" ps-mule-encode-7bit 2))
+    (chinese-cns11643-6
+     (normal bdf "cns-6-40.bdf" ps-mule-encode-7bit 2))
+    (chinese-cns11643-7
+     (normal bdf "cns-7-40.bdf" ps-mule-encode-7bit 2))
+    (indian-2-column
+     (normal bdf "mule-indian-24.bdf" ps-mule-encode-7bit 2))
+    (tibetan
+     (normal bdf "mule-tibmdx-24.bdf" ps-mule-encode-7bit 2)))
+  "Sample setting of the `ps-mule-font-info-database' to use BDF fonts.
+BDF (Bitmap Distribution Format) is a format used for distributing
+X's font source file.
+
+Current default value lists BDF fonts included in `intlfonts-1.1'
+which is a collection of X11 fonts for all characters supported by
+Emacs.
+
+With the default value, all characters including ASCII and Latin-1 are
+printed by BDF fonts.   See also `ps-mule-font-info-database-ps-bdf'.")
+
+(defconst ps-mule-font-info-database-ps-bdf
+  (cons '(latin-iso8859-1
+         (normal nil nil iso-latin-1))
+       (cdr (cdr ps-mule-font-info-database-bdf)))
+  "Sample setting of the `ps-mule-font-info-database to use BDF fonts.
+
+Current default value lists BDF fonts included in `intlfonts-1.1'
+which is a collection of X11 fonts for all characters supported by
+Emacs.
+
+With the default value, all characters except for ASCII and Latin-1 are
+printed by BDF fonts.   ASCII and Latin-1 charcaters are printed by
+PostScript font specified by `ps-font-family'.
+
+See also `ps-mule-font-info-database-bdf'.")
+
+;; Two typical encoding functions for PostScript fonts.
+
+(defun ps-mule-encode-7bit (string)
+  (let* ((dim (charset-dimension
+              (char-charset (ps-mule-string-char string 0))))
+        (len (* (ps-mule-chars-in-string string) dim))
+        (str (make-string len 0))
+        (i 0) (j 0))
+    (if (= dim 1)
+       (while (< j len)
+         (aset str j (nth 1 (split-char (ps-mule-string-char string i))))
+         (setq i (ps-mule-next-index string i)
+               j (1+ j)))
+      (while (< j len)
+       (let ((split (split-char (ps-mule-string-char string i))))
+         (aset str j (nth 1 split))
+         (aset str (1+ j) (nth 2 split))
+         (setq i (ps-mule-next-index string i)
+               j (+ j 2)))))
+    str))
+
+(defun ps-mule-encode-8bit (string)
+  (let* ((dim (charset-dimension
+              (char-charset (ps-mule-string-char string 0))))
+        (len (* (ps-mule-chars-in-string string) dim))
+        (str (make-string len 0))
+        (i 0) (j 0))
+    (if (= dim 1)
+       (while (< j len)
+         (aset str j
+               (+ (nth 1 (split-char (ps-mule-string-char string i))) 128))
+         (setq i (ps-mule-next-index string i)
+               j (1+ j)))
+      (while (< j len)
+       (let ((split (split-char (ps-mule-string-char string i))))
+         (aset str j (+ (nth 1 split) 128))
+         (aset str (1+ j) (+ (nth 2 split) 128))
+         (setq i (ps-mule-next-index string i)
+               j (+ j 2)))))
+    str))
+
+;; Special encoding function for Ethiopic.
+(define-ccl-program ccl-encode-ethio-unicode
+  `(1
+    ((read r2)
+     (loop
+      (if (r2 == ,leading-code-private-22)
+         ((read r0)
+          (if (r0 == ,(charset-id 'ethiopic))
+              ((read r1 r2)
+               (r1 &= 127) (r2 &= 127)
+               (call ccl-encode-ethio-font)
+               (write r1)
+               (write-read-repeat r2))
+            ((write r2 r0)
+             (repeat))))
+       (write-read-repeat r2))))))
+
+(defun ps-mule-encode-ethiopic (string)
+  (ccl-execute-on-string (symbol-value 'ccl-encode-ethio-unicode)
+                        (make-vector 9 nil)
+                        string))
+
+;; A charset which we are now processing.
+(defvar ps-mule-current-charset nil)
+
+(defun ps-mule-get-font-spec (charset font-type)
+  "Return FONT-SPEC for printing characters CHARSET with FONT-TYPE.  
+FONT-SPEC is a list of FONT-SRC, FONT-NAME, ENCODING, and BYTES,
+this information is extracted from `ps-mule-font-info-database'
+See the documentation of `ps-mule-font-info-database' for the meaning
+of each element of the list."
+  (let ((slot (cdr (assq charset ps-mule-font-info-database))))
+    (if slot
+       (cdr (or (assq font-type slot)
+                (and (eq font-type 'bold-italic)
+                     (or (assq 'bold slot) (assq 'italic slot)))
+                (assq 'normal slot))))))
+
+;; Functions to access each element of FONT-SPEC.
+(defsubst ps-mule-font-spec-src (font-spec) (car font-spec))
+(defsubst ps-mule-font-spec-name (font-spec) (nth 1 font-spec))
+(defsubst ps-mule-font-spec-encoding (font-spec) (nth 2 font-spec))
+(defsubst ps-mule-font-spec-bytes (font-spec) (nth 3 font-spec))
+
+(defsubst ps-mule-printable-p (charset)
+  "Non-nil if characters in CHARSET is printable."
+  (ps-mule-get-font-spec charset 'normal))
+
+(defconst ps-mule-external-libraries
+  '((builtin nil
+            nil nil nil)
+    (bdf nil
+        bdf-generate-prologue bdf-generate-font bdf-generate-glyphs)
+    (pcf nil
+        pcf-generate-prologue pcf-generate-font pcf-generate-glyphs)
+    (vflib nil
+          vflib-generate-prologue vflib-generate-font vflib-generate-glyphs))
+  "Alist of information of external libraries to support PostScript printing.
+Each element has the form:
+    (FONT-SRC INITIALIZED-P PROLOGUE-FUNC FONT-FUNC GLYPHS-FUNC)
+
+FONT-SRC is a source of font: builtin, bdf, pcf, or vflib.  Except for
+builtin, libraries of the same names are necessary, but currently, we
+only have the library `bdf'.
+
+INITIALIZED-P is a flag to tell this library is initialized or not.
+
+PROLOGUE-FUNC is a function to call to get a PostScript codes which
+define procedures to use this library.  It is called with no argument,
+and should return a list of strings.
+
+FONT-FUNC is a function to call to get a PostScript codes which define
+a new font.  It is called with one argument FONT-SPEC, and should
+return a list of strings.
+
+GLYPHS-FUNC is a function to call to get a PostScript codes which
+define glyphs of characters.  It is called with three arguments
+FONT-SPEC, CODE-LIST, and BYTES, and should return a list of strings.")
+
+(defun ps-mule-init-external-library (font-spec)
+  "Initialize external librarie specified in FONT-SPEC for PostScript printing.
+See the documentation of `ps-mule-get-font-spec' for the meaning of
+each element of the list."
+  (let* ((font-src (ps-mule-font-spec-src font-spec))
+        (slot (assq font-src ps-mule-external-libraries)))
+    (or (not font-src)
+       (nth 1 slot)
+       (let ((func (nth 2 slot)))
+         (if func
+             (progn
+               (or (featurep font-src) (require font-src))
+               (ps-output-prologue (funcall func))))
+         (setcar (cdr slot) t)))))
+
+;; Cached glyph information of fonts, alist of:
+;;     (FONT-NAME ((FONT-TYPE-NUMBER . SCALED-FONT-NAME) ...)
+;;      cache CODE0 CODE1 ...)
+(defvar ps-mule-font-cache nil)
+
+(defun ps-mule-generate-font (font-spec charset)
+  "Generate PostScript codes to define a new font in FONT-SPEC for CHARSET."
+  (let* ((font-cache (assoc (ps-mule-font-spec-name font-spec)
+                           ps-mule-font-cache))
+        (font-src (ps-mule-font-spec-src font-spec))
+        (font-name (ps-mule-font-spec-name font-spec))
+        (func (nth 3 (assq font-src ps-mule-external-libraries)))
+        (scaled-font-name
+         (if (eq charset 'ascii)
+             (format "f%d" ps-current-font)
+           (format "f%02x-%d"
+                   (charset-id charset) ps-current-font))))
+    (if (and func (not font-cache))
+       (ps-output-prologue (funcall func charset font-spec)))
+    (ps-output-prologue
+     (list (format "/%s %f /%s Def%sFontMule\n"
+                  scaled-font-name ps-font-size font-name
+                  (if (eq ps-mule-current-charset 'ascii) "Ascii" ""))))
+    (if font-cache
+       (setcar (cdr font-cache)
+               (cons (cons ps-current-font scaled-font-name)
+                     (nth 1 font-cache)))
+      (setq font-cache (list font-name
+                            (list (cons ps-current-font scaled-font-name))
+                            'cache))
+      (setq ps-mule-font-cache (cons font-cache ps-mule-font-cache)))
+    font-cache))
+
+(defun ps-mule-generate-glyphs (font-spec code-list)
+  "Generate PostScript codes which generate glyphs for CODE-LIST of FONT-SPEC."
+  (let* ((font-src (ps-mule-font-spec-src font-spec))
+        (func (nth 4 (assq font-src ps-mule-external-libraries))))
+    (if func
+       (ps-output-prologue
+        (funcall func font-spec code-list
+                 (ps-mule-font-spec-bytes font-spec))))))
+
+(defvar ps-last-font nil)
+
+(defun ps-mule-prepare-font (font-spec string charset &optional no-setfont) 
+  "Generate PostScript codes to print STRING of CHARSET by font in FONT-SPEC.
+The generated codes goes to prologue part except for a code for
+setting the current font (using PostScript procedure `FM').
+If optional arg NO-SETFONT is non-nil, don't generate the code for
+setting the current font."
+  (let ((font-cache (assoc (ps-mule-font-spec-name font-spec)
+                          ps-mule-font-cache)))
+    (or (and font-cache (assq ps-current-font (nth 1 font-cache)))
+       (setq font-cache (ps-mule-generate-font font-spec charset)))
+    (or no-setfont
+       (let ((new-font (cdr (assq ps-current-font (nth 1 font-cache)))))
+         (or (equal new-font ps-last-font)
+             (progn
+               (ps-output (format "/%s FM\n" new-font))
+               (setq ps-last-font new-font)))))
+    (if (nth 4 (assq (ps-mule-font-spec-src font-spec)
+                    ps-mule-external-libraries))
+       ;; We have to generate PostScript codes which define glyphs.
+       (let* ((cached-codes (nthcdr 2 font-cache))
+              (newcodes nil)
+              (bytes (ps-mule-font-spec-bytes font-spec))
+              (len (length string))
+              (i 0)
+              code)
+         (while (< i len)
+           (setq code
+                 (if (= bytes 1) (aref string i)
+                   (+ (* (aref string i) 256) (aref string (1+ i)))))
+           (or (memq code cached-codes)
+               (progn
+                 (setq newcodes (cons code newcodes))
+                 (setcdr cached-codes (cons code (cdr cached-codes)))))
+           (setq i (+ i bytes)))
+         (if newcodes
+             (ps-mule-generate-glyphs font-spec newcodes))))))
+
+;; List of charsets of multibyte characters in a text being printed.
+;; If the text doesn't contain any multibyte characters (i.e. only
+;; ASCII), the value is nil.
+(defvar ps-mule-charset-list nil)
+
+;; This constant string is a PostScript code embeded as is in the
+;; header of generated PostScript.
+
+(defvar ps-mule-prologue-generated nil)
+
+(defconst ps-mule-prologue
+  "%%%% Start of Mule Section
+
+%% Working dictionaly for general use.
+/MuleDict 10 dict def
+
+%% Define already scaled font for non-ASCII character sets.
+/DefFontMule {                 % fontname size basefont  |-  --
+  findfont exch scalefont definefont pop
+} bind def
+
+%% Define already scaled font for ASCII character sets.
+/DefAsciiFontMule {            % fontname size basefont  |-
+  MuleDict begin
+  findfont dup /Encoding get /ISOLatin1Encoding exch def
+  exch scalefont reencodeFontISO
+  end
+} def
+
+%% Set the specified non-ASCII font to use.  It doesn't install
+%% Ascent, etc.
+/FM {                          %  fontname  |-  --
+  findfont setfont
+} bind def
+
+%% Show vacant box for characters which don't have appropriate font.
+/SB {                          % count column |-  --
+    SpaceWidth mul /w exch def
+    1 exch 1 exch { %for
+       pop
+       gsave
+       0 setlinewidth
+       0 Descent rmoveto w 0 rlineto
+       0 LineHeight rlineto w neg 0 rlineto closepath stroke
+       grestore
+       w 0 rmoveto
+    } for
+} bind def
+
+%% Flag to tell if we are now handling a composite character.  This is
+%% defined here because both composite character handler and bitmap font
+%% handler require it.
+/Cmpchar false def
+
+%%%% End of Mule Section
+
+"
+  "PostScript code for printing multibyte characters.")
+
+(defun ps-mule-skip-same-charset (charset)
+  "Skip characters of CHARSET following the current point."
+  (while (eq (charset-after) charset) (forward-char 1)))
+
+(defun ps-mule-find-wrappoint (from to char-width)
+  "Find a longest sequence at FROM which is printable in the current line.
+
+TO limits the sequence.  It is assumed that all characters between
+FROM and TO belong to a charset set in `ps-mule-current-charset'.
+
+CHAR-WIDTH is an average width of ASCII characters in the current font.
+
+The return value is a cons of ENDPOS and RUN-WIDTH, where
+ENDPOS is an end position of the sequence,
+RUN-WIDTH is the width of the sequence."
+  (let (run-width)
+    (if (eq ps-mule-current-charset 'composition)
+       ;; We must draw one char by one.
+       (let ((ch (char-after from)))
+         (setq run-width (* (char-width ch) char-width))
+         (if (> run-width ps-width-remaining)
+             (setq run-width ps-width-remaining)
+           (setq from (ps-mule-next-point from))))
+      ;; We assume that all characters in this range have the same width.
+      (let ((width (charset-width ps-mule-current-charset)))
+       (setq run-width (* (- to from) char-width width))
+       (if (> run-width ps-width-remaining)
+           (setq from (min
+                       (+ from (truncate (/ ps-width-remaining char-width)))
+                       to)
+                 run-width ps-width-remaining)
+         (setq from to))))
+    (cons from run-width)))
+
+(defun ps-mule-plot-string (from to &optional bg-color)
+  "Generate PostScript code for ploting characters in the region FROM and TO.
+It is assumed that all characters in this region belong to the
+charset `ps-mule-current-charset'.
+Optional arg BG-COLOR specifies background color.
+The return value is a cons of ENDPOS and WIDTH of the sequence
+actually plotted by this function."
+  (let* ((wrappoint (ps-mule-find-wrappoint
+                    from to (ps-avg-char-width 'ps-font-for-text)))
+        (to (car wrappoint))
+        (font-type (car (nth ps-current-font
+                             (ps-font-alist 'ps-font-for-text))))
+        (font-spec (ps-mule-get-font-spec ps-mule-current-charset font-type))
+        (encoding (ps-mule-font-spec-encoding font-spec))
+        (string (buffer-substring-no-properties from to)))
+    (cond
+     ((= from to)
+      ;; We can't print any more characters in the current line.
+      nil)
+
+     (font-spec
+      ;; We surely have a font for printing this character set.
+      (if (coding-system-p encoding)
+         (setq string (encode-coding-string string encoding))
+       (if (functionp encoding)
+           (setq string (funcall encoding string))
+         (if encoding
+             (error "Invalid coding system or function: %s" encoding))))
+      (setq string (string-as-unibyte string))
+      (if (ps-mule-font-spec-src font-spec)
+         (ps-mule-prepare-font font-spec string ps-mule-current-charset)
+       (ps-set-font ps-current-font))
+      (ps-output-string string)
+      (ps-output " S\n"))
+
+     ((eq ps-mule-current-charset 'latin-iso8859-1)
+      ;; Latin-1 can be printed by a normal ASCII font.
+      (ps-set-font ps-current-font)
+      (ps-output-string
+       (string-as-unibyte (encode-coding-string string 'iso-latin-1)))
+      (ps-output " S\n"))
+
+     ((eq ps-mule-current-charset 'composition)
+      (let* ((ch (char-after from))
+            (width (char-width ch))
+            (ch-list (decompose-composite-char ch 'list t)))
+       (if (consp (nth 1 ch-list))
+           (ps-mule-plot-rule-cmpchar ch-list width font-type)
+         (ps-mule-plot-cmpchar ch-list width t font-type))))
+
+     (t
+      ;; No way to print this charset.  Just show a vacant box of an
+      ;; appropriate width.
+      (ps-output (format "%d %d SB\n"
+                        (length string)
+                        (if (eq ps-mule-current-charset 'composition)
+                            (char-width (char-after from))
+                          (charset-width ps-mule-current-charset))))))
+    wrappoint))
+
+;; Composite font support
+
+(defvar ps-mule-cmpchar-prologue-generated nil)
+
+(defconst ps-mule-cmpchar-prologue
+  "%%%% Composite character handler
+/CmpcharWidth 0 def
+/CmpcharRelativeCompose 0 def
+/CmpcharRelativeSkip 0.4 def
+
+%% Get a bounding box (relative to currentpoint) of STR.
+/GetPathBox {                  % str  |-  --
+    gsave
+    currentfont /FontType get 3 eq { %ifelse
+       stringwidth pop pop
+    } {
+       currentpoint /y exch def pop
+       false charpath flattenpath pathbbox
+       y sub /URY exch def pop
+       y sub /LLY exch def pop
+    } ifelse
+    grestore
+} bind def
+
+%% Beginning of composite char.
+/BC {                          % str xoff width |-  --
+    /Cmpchar true def
+    /CmpcharWidth exch def
+    currentfont /RelativeCompose known {
+       /CmpcharRelativeCompose currentfont /RelativeCompose get def
+    } {
+       /CmpcharRelativeCompose false def
+    } ifelse
+    /bgsave bg def /bgcolorsave bgcolor def
+    /Effectsave Effect def
+    gsave                      % Reflect effect only at first
+       /Effect Effect 1 2 add 4 add 16 add and def
+       /f0 findfont setfont (        ) 0 CmpcharWidth getinterval S
+    grestore
+    /Effect Effectsave 8 32 add and def        % enable only shadow and outline
+    false BG
+    gsave SpaceWidth mul 0 rmoveto dup GetPathBox S grestore
+    /y currentpoint exch pop def
+    /HIGH URY y add def /LOW LLY y add def
+} bind def
+
+%% End of composite char.
+/EC {                          % --  |-  --
+    /bg bgsave def /bgcolor bgcolorsave def
+    /Effect Effectsave def
+    /Cmpchar false def
+    CmpcharWidth SpaceWidth mul 0 rmoveto
+} bind def
+
+%% Rule base composition
+/RBC {                         % str xoff gref nref  |-  --
+    /nref exch def /gref exch def
+    gsave
+    SpaceWidth mul 0 rmoveto
+    dup
+    GetPathBox
+    [ HIGH currentpoint exch pop LOW HIGH LOW add 2 div ] gref get
+    [ URY LLY sub LLY neg 0 URY LLY sub 2 div ] nref get
+    sub /btm exch def
+    /top btm URY LLY sub add def
+    top HIGH gt { /HIGH top def } if
+    btm LOW lt { /LOW btm def } if
+    currentpoint pop btm LLY sub moveto
+    S
+    grestore
+} bind def    
+
+%% Relative composition
+/RLC {                         % str  |-  --
+    gsave
+    dup GetPathBox
+    CmpcharRelativeCompose type /integertype eq {
+       LLY CmpcharRelativeCompose gt { % compose on top
+           currentpoint pop HIGH LLY sub CmpcharRelativeSkip add moveto
+           /HIGH HIGH URY LLY sub add CmpcharRelativeSkip add def
+       } { URY 0 le {                  % compose under bottom
+           currentpoint pop LOW LLY add CmpcharRelativeSkip sub moveto
+           /LOW LOW URY LLY sub sub CmpcharRelativeSkip sub def
+    } if } ifelse } if
+    S
+    grestore
+} bind def
+%%%% End of composite character handler
+
+"
+  "PostScript code for printing composite characters.")
+
+(defun ps-mule-plot-rule-cmpchar (ch-rule-list total-width font-type)
+  (let* ((leftmost 0.0)
+        (rightmost (float (char-width (car ch-rule-list))))
+        (l (cons '(3 . 3) ch-rule-list))
+        (cmpchar-elements nil))
+    (while l
+      (let* ((this (car l))
+            (gref (car this))
+            (nref (cdr this))
+            ;; X-axis info (0:left, 1:center, 2:right)
+            (gref-x (% gref 3))
+            (nref-x (% nref 3))
+            ;; Y-axis info (0:top, 1:base, 2:bottom, 3:center)
+            (gref-y (if (= gref 4) 3 (/ gref 3)))
+            (nref-y (if (= nref 4) 3 (/ nref 3)))
+            (width (float (char-width (car (cdr l)))))
+            left)
+       (setq left (+ leftmost
+                     (/ (* (- rightmost leftmost) gref-x) 2.0)
+                     (- (/ (* nref-x width) 2.0))))
+       (setq cmpchar-elements
+             (cons (list (car (cdr l)) left gref-y nref-y) cmpchar-elements))
+       (if (< left leftmost)
+           (setq leftmost left))
+       (if (> (+ left width) rightmost)
+           (setq rightmost (+ left width)))
+       (setq l (nthcdr 2 l))))
+    (if (< leftmost 0)
+       (let ((l cmpchar-elements))
+         (while l
+           (setcar (cdr (car l))
+                   (- (nth 1 (car l)) leftmost))
+           (setq l (cdr l)))))
+    (ps-mule-plot-cmpchar (nreverse cmpchar-elements)
+                         total-width nil font-type)))
+
+(defun ps-mule-plot-cmpchar (elements total-width relativep font-type)
+  (let* ((ch (if relativep (car elements) (car (car elements))))
+        (str (ps-mule-prepare-cmpchar-font ch font-type)))
+    (ps-output-string str)
+    (ps-output (format " %d %d BC "
+                      (if relativep 0 (nth 1 (car elements)))
+                      total-width)))
+  (setq elements (cdr elements))
+  (while elements
+    (let* ((elt (car elements))
+          (ch (if relativep elt (car elt)))
+          (str (ps-mule-prepare-cmpchar-font ch font-type)))
+      (if relativep
+         (progn
+           (ps-output-string str)
+           (ps-output " RLC "))
+       (ps-output-string str)
+       (ps-output (format " %d %d %d RBC "
+                          (nth 1 elt) (nth 2 elt) (nth 3 elt)))))
+    (setq elements (cdr elements)))
+  (ps-output "EC\n"))
+    
+(defun ps-mule-prepare-cmpchar-font (char font-type)
+  (let* ((ps-mule-current-charset (char-charset char))
+        (font-spec (ps-mule-get-font-spec ps-mule-current-charset font-type))
+        (encoding (ps-mule-font-spec-encoding font-spec))
+        (str (char-to-string char)))
+    (cond (font-spec
+          (if (coding-system-p encoding)
+              (setq str (encode-coding-string str encoding))
+            (if (functionp encoding)
+                (setq str (funcall encoding str))
+              (if encoding
+                  (error "Invalid coding system or function: %s" encoding))))
+          (setq str (string-as-unibyte str))
+          (if (ps-mule-font-spec-src font-spec)
+              (ps-mule-prepare-font font-spec str ps-mule-current-charset)
+            (ps-set-font ps-current-font)))
+
+         ((eq ps-mule-current-charset 'latin-iso8859-1)
+          (ps-set-font ps-current-font)
+          (setq str
+                (string-as-unibyte (encode-coding-string str 'iso-latin-1))))
+
+         (t
+          ;; No font for CHAR.
+          (ps-set-font ps-current-font)
+          (setq str " ")))
+    str))
+
+;; Bitmap font support
+
+(defvar ps-mule-bitmap-prologue-generated nil)
+
+(defconst ps-mule-bitmap-prologue
+  "%%%% Bitmap font handler
+
+/str7 7 string def             % working area
+
+%% We grow the dictionary one bunch (1024 entries) by one.
+/BitmapDictArray 256 array def
+/BitmapDictLength 1024 def
+/BitmapDictIndex -1 def
+
+/NewBitmapDict {               % --  |-  --
+    /BitmapDictIndex BitmapDictIndex 1 add def
+    BitmapDictArray BitmapDictIndex BitmapDictLength dict put
+} bind def
+
+%% Make at least one dictionary.
+NewBitmapDict
+
+/AddBitmap {                   % gloval-charname bitmap-data  |-  --
+    BitmapDictArray BitmapDictIndex get
+    dup length BitmapDictLength ge {
+       pop
+       NewBitmapDict
+       BitmapDictArray BitmapDictIndex get
+    } if
+    3 1 roll put
+} bind def
+
+/GetBitmap {                   % gloval-charname  |-  bitmap-data
+    0 1 BitmapDictIndex { BitmapDictArray exch get begin } for
+    load
+    0 1 BitmapDictIndex { pop end } for
+} bind def
+
+%% Return a global character name which can be used as a key in the
+%% bitmap dictionary.
+/GlobalCharName {              % fontidx code1 code2  |-  gloval-charname
+    exch 256 mul add exch 65536 mul add 16777216 add 16 str7 cvrs 0 66 put
+    str7 cvn
+} bind def
+    
+%% Character code holder for a 2-byte character.
+/FirstCode -1 def
+
+%% Glyph rendering procedure
+/BuildGlyphCommon {            % fontdict charname  |-  --
+    1 index /FontDimension get 1 eq { /FirstCode 0 store } if
+    NameIndexDict exch get     % STACK: fontdict charcode
+    FirstCode 0 lt { %ifelse
+       %% This is the first byte of a 2-byte character.  Just
+       %% remember it for the moment.
+       /FirstCode exch store
+       pop
+       0 0 setcharwidth
+    } {
+       1 index /FontSize get /size exch def
+       1 index /FontSpaceWidthRatio get /ratio exch def
+       1 index /FontIndex get exch FirstCode exch
+       GlobalCharName GetBitmap /bmp exch def
+       %% bmp == [ DWIDTH BBX-WIDTH BBX-HEIGHT BBX-XOFF BBX-YOFF BITMAP ]
+       Cmpchar { %ifelse
+           /FontMatrix get [ exch { size div } forall ] /mtrx exch def
+           bmp 3 get bmp 4 get mtrx transform
+           /LLY exch def pop
+           bmp 1 get bmp 3 get add bmp 2 get bmp 4 get add mtrx transform
+           /URY exch def pop
+       } {
+           pop
+       } ifelse
+       /FirstCode -1 store
+
+       bmp 0 get SpaceWidthRatio ratio div mul size div 0      % wx wy
+       setcharwidth                    % We can't use setcachedevice here.
+
+       bmp 1 get 0 gt bmp 2 get 0 gt and {
+           bmp 1 get bmp 2 get         % width height
+           true                        % polarity
+           [ size 0 0 size neg bmp 3 get neg bmp 2 get bmp 4 get add ] % matrix
+           bmp 5 1 getinterval cvx     % datasrc
+           imagemask
+       } if
+    } ifelse
+} bind def    
+
+/BuildCharCommon {
+    1 index /Encoding get exch get
+    1 index /BuildGlyph get exec
+} bind def
+
+%% Bitmap font creater
+
+%% Common Encoding shared by all bitmap fonts.
+/EncodingCommon 256 array def
+%% Mapping table from character name to character code.
+/NameIndexDict 256 dict def
+0 1 255 { %for
+    /idx exch def
+    /idxname idx 256 add 16 (XXX) cvrs dup 0 67 put cvn def % `C' == 67
+    EncodingCommon idx idxname put
+    NameIndexDict idxname idx put
+} for
+
+/GlobalFontIndex 0 def
+
+%% fontname dim col fontsize relative-compose baseline-offset fbbx  |-  --
+/BitmapFont {
+    15 dict begin
+    /FontBBox exch def
+    /BaselineOffset exch def
+    /RelativeCompose exch def
+    /FontSize exch def
+    /FontBBox [ FontBBox { FontSize div } forall ] def
+    FontBBox 2 get FontBBox 0 get sub exch div
+    /FontSpaceWidthRatio exch def
+    /FontDimension exch def
+    /FontIndex GlobalFontIndex def
+    /FontType 3 def
+    /FontMatrix matrix def
+    /Encoding EncodingCommon def
+    /BuildGlyph { BuildGlyphCommon } def
+    /BuildChar { BuildCharCommon } def
+    currentdict end
+    definefont pop
+    /GlobalFontIndex GlobalFontIndex 1 add def
+} bind def
+
+%% Define a new bitmap font.
+%% fontname dim col fontsize relative-compose baseline-offset fbbx  |-  --
+/NF {
+    /fbbx exch def
+    %% Convert BDF's FontBoundingBox to PostScript's FontBBox
+    [ fbbx 2 get fbbx 3 get
+      fbbx 2 get fbbx 0 get add fbbx 3 get fbbx 1 get add ]
+    BitmapFont
+} bind def
+
+%% Define a glyph for the specified font and character.
+/NG {                          % fontname charcode bitmap-data  |-  --
+    /bmp exch def
+    exch findfont dup /BaselineOffset get bmp 4 get add bmp exch 4 exch put
+    /FontIndex get exch
+    dup 256 idiv exch 256 mod GlobalCharName
+    bmp AddBitmap
+} bind def
+%%%% End of bitmap font handler
+
+")
+
+;; External library support.
+
+;; The following three functions are to be called from external
+;; libraries which support bitmap fonts (e.g. `bdf') to get
+;; appropriate PostScript code.
+
+(defun ps-mule-generate-bitmap-prologue ()
+  (unless ps-mule-bitmap-prologue-generated
+    (setq ps-mule-bitmap-prologue-generated t)
+    (list ps-mule-bitmap-prologue)))
+
+(defun ps-mule-generate-bitmap-font (&rest args)
+  (list (apply 'format "/%s %d %d %f %S %d %S NF\n" args)))
+
+(defun ps-mule-generate-bitmap-glyph (font-name code dwidth bbx bitmap)
+  (format "/%s %d [ %d %d %d %d %d <%s> ] NG\n"
+         font-name code
+         dwidth (aref bbx 0) (aref bbx 1) (aref bbx 2) (aref bbx 3)
+         bitmap))
+
+;; Mule specific initializers.
+
+(defun ps-mule-initialize ()
+  "Produce Poscript code in the prologue part for multibyte characters."
+  (setq ps-mule-current-charset 'ascii
+       ps-mule-font-cache nil
+       ps-mule-prologue-generated nil
+       ps-mule-cmpchar-prologue-generated nil
+       ps-mule-bitmap-prologue-generated nil)
+  (mapcar (function (lambda (x) (setcar (cdr x) nil)))
+         ps-mule-external-libraries))
+
+(defun ps-mule-begin (from to)
+  (if (and (boundp 'enable-multibyte-characters)
+          enable-multibyte-characters)
+      ;; Initialize `ps-mule-charset-list'.  If some characters aren't
+      ;; printable, warn it.
+      (let ((charsets (delete 'ascii (find-charset-region from to))))
+       (setq ps-mule-charset-list charsets)
+       (save-excursion
+         (goto-char from)
+         (if (search-forward "\200" to t)
+             (setq ps-mule-charset-list
+                   (cons 'composition ps-mule-charset-list))))
+       (if (and (catch 'tag
+                  (while charsets
+                    (if (or (eq (car charsets) 'composition)
+                            (ps-mule-printable-p (car charsets)))
+                        (setq charsets (cdr charsets))
+                      (throw 'tag t))))
+                (not (y-or-n-p "Font for some characters not found, continue anyway? ")))
+           (error "Printing cancelled"))))
+
+  (if ps-mule-charset-list
+      (let ((l ps-mule-charset-list)
+           font-spec)
+       (unless ps-mule-prologue-generated
+         (ps-output-prologue ps-mule-prologue)
+         (setq ps-mule-prologue-generated t))
+       ;; If external functions are necessary, generate prologues for them.
+       (while l
+         (if (and (eq (car l) 'composition)
+                  (not ps-mule-cmpchar-prologue-generated))
+             (progn
+               (ps-output-prologue ps-mule-cmpchar-prologue)
+               (setq ps-mule-cmpchar-prologue-generated t))
+           (if (setq font-spec (ps-mule-get-font-spec (car l) 'normal))
+               (ps-mule-init-external-library font-spec)))
+         (setq l (cdr l)))))
+
+  ;; If ASCII font is also specified in ps-mule-font-info-database,
+  ;; use it istead of what specified in ps-font-info-database.
+  (let ((font-spec (ps-mule-get-font-spec 'ascii 'normal)))
+    (if font-spec
+       (progn
+         (unless ps-mule-prologue-generated
+           (ps-output-prologue ps-mule-prologue)
+           (setq ps-mule-prologue-generated t))
+         (ps-mule-init-external-library font-spec)
+         (let ((font (ps-font-alist 'ps-font-for-text))
+               (i 0))
+           (while font
+             (let ((ps-current-font i))
+               ;; Be sure to download a glyph for SPACE in advance.
+               (ps-mule-prepare-font
+                (ps-mule-get-font-spec 'ascii (car font))
+                " " 'ascii 'no-setfont))
+             (setq font (cdr font) i (1+ i))))))))
+
+\f
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
 (defun ps-line-lengths-internal ()
   "Display the correspondence between a line length and a font size,
 using the current ps-print setup.
 Try: pr -t file | awk '{printf \"%3d %s\n\", length($0), $0}' | sort -r | head"
   (let ((buf (get-buffer-create "*Line-lengths*"))
        (ifs ps-font-size)              ; initial font size
-       (icw ps-avg-char-width)         ; initial character width
+       (icw (ps-avg-char-width 'ps-font-for-text)) ; initial character width
        (print-width (progn (ps-get-page-dimensions)
                            ps-print-width))
        (ps-setup (ps-setup))           ; setup for the current buffer
@@ -2439,12 +3828,12 @@ Try: pr -t file | awk '{printf \"%3d %s\n\", length($0), $0}' | sort -r | head"
     (display-buffer buf 'not-this-window)))
 
 (defun ps-nb-pages (nb-lines)
-  "Display an approximate correspondence between a font size and the number
-of pages the number of lines would require to print
-using the current ps-print setup."
+  "Display correspondence between font size and the number of pages.
+The correspondence is based on having NB-LINES lines of text,
+and on the current ps-print setup."
   (let ((buf (get-buffer-create "*Nb-Pages*"))
        (ifs ps-font-size)              ; initial font size
-       (ilh ps-line-height)            ; initial line height
+       (ilh (ps-line-height 'ps-font-for-text)) ; initial line height
        (page-height (progn (ps-get-page-dimensions)
                            ps-print-height))
        (ps-setup (ps-setup))           ; setup for the current buffer
@@ -2483,56 +3872,23 @@ using the current ps-print setup."
     (insert "\n")
     (display-buffer buf 'not-this-window)))
 
-(defun ps-error-scale-font ()
-  (error "Don't have data to scale font %s.\nKnown fonts families are:\n%s"
-        ps-font-family
-        (mapcar 'car ps-font-info-database)))
-
-(defun ps-select-font ()
-  "Choose the font name and size (scaling data)."
-  (let ((assoc (cdr (assq ps-font-family ps-font-info-database)))
-       fn fb fi bi sz lh sw aw)
-    (or assoc (ps-error-scale-font))
-    (setq fn (nth 0 assoc)
-         fb (nth 1 assoc)
-         fi (nth 2 assoc)
-         bi (nth 3 assoc)
-         sz (nth 4 assoc)
-         lh (nth 5 assoc)
-         sw (nth 6 assoc)
-         aw (nth 7 assoc)
-
-         ps-font             fn
-         ps-font-bold        fb
-         ps-font-italic      fi
-         ps-font-bold-italic bi
-         ;; These data just need to be rescaled:
-         ps-line-height      (/ (* lh ps-font-size) sz)
-         ps-space-width      (/ (* sw ps-font-size) sz)
-         ps-avg-char-width   (/ (* aw ps-font-size) sz))
-    ps-font-family))
-
-(defun ps-select-header-font ()
-  "Choose the font name and size (scaling data) for the header."
-  (let ((assoc (cdr (assq ps-header-font-family ps-font-info-database)))
-       fn fb fi bi sz lh sw aw)
-    (or assoc (ps-error-scale-font))
-    (setq fn (nth 0 assoc)
-         fb (nth 1 assoc)
-         fi (nth 2 assoc)
-         bi (nth 3 assoc)
-         sz (nth 4 assoc)
-         lh (nth 5 assoc)
-         sw (nth 6 assoc)
-         aw (nth 7 assoc)
-
-         ;; Font name
-         ps-header-font              fn
-         ps-header-title-font        fb
-         ;; Line height: These data just need to be rescaled:
-         ps-header-title-line-height (/ (* lh ps-header-title-font-size) sz)
-         ps-header-line-height       (/ (* lh ps-header-font-size)       sz))
-    ps-header-font-family))
+;; macros used in `ps-select-font'
+(defmacro ps-lookup (key) `(cdr (assq ,key font-entry)))
+(defmacro ps-size-scale (key) `(/ (* (ps-lookup ,key) font-size) size))
+
+(defun ps-select-font (font-family sym font-size title-font-size)
+  (let ((font-entry (cdr (assq font-family ps-font-info-database))))
+    (or font-entry
+       (error "Don't have data to scale font %s. Known fonts families are %s"
+              font-family
+              (mapcar 'car ps-font-info-database)))
+    (let ((size (ps-lookup 'size)))
+      (put sym 'fonts (ps-lookup 'fonts))
+      (put sym 'space-width (ps-size-scale 'space-width))
+      (put sym 'avg-char-width (ps-size-scale 'avg-char-width))
+      (put sym 'line-height (ps-size-scale 'line-height))
+      (put sym 'title-line-height
+          (/ (* (ps-lookup 'line-height) title-font-size) size)))))
 
 (defun ps-get-page-dimensions ()
   (let ((page-dimensions (cdr (assq ps-paper-type ps-page-dimensions-database)))
@@ -2542,11 +3898,13 @@ using the current ps-print setup."
       (error "`ps-paper-type' must be one of:\n%s"
             (mapcar 'car ps-page-dimensions-database)))
      ((< ps-number-of-columns 1)
-      (error "The number of columns %d should not be negative"
+      (error "The number of columns %d should be positive"
             ps-number-of-columns)))
 
-    (ps-select-font)
-    (ps-select-header-font)
+    (ps-select-font ps-font-family 'ps-font-for-text
+                   ps-font-size ps-font-size)
+    (ps-select-font ps-header-font-family 'ps-font-for-header
+                   ps-header-font-size ps-header-title-font-size)
 
     (setq page-width  (ps-page-dimensions-get-width  page-dimensions)
          page-height (ps-page-dimensions-get-height page-dimensions))
@@ -2597,12 +3955,14 @@ page-height == bm + print-height + tm
     ;; If headers are turned on, deduct the height of the header from
     ;; the print height.
     (if ps-print-header
-       (setq ps-header-pad   (* ps-header-line-pad ps-header-title-line-height)
+       (setq ps-header-pad   (* ps-header-line-pad
+                                (ps-title-line-height 'ps-font-for-header))
              ps-print-height (- ps-print-height
                                 ps-header-offset
                                 ps-header-pad
-                                ps-header-title-line-height
-                                (* ps-header-line-height (1- ps-header-lines))
+                                (ps-title-line-height 'ps-font-for-header)
+                                (* (ps-line-height 'ps-font-for-header)
+                                   (1- ps-header-lines))
                                 ps-header-pad)))
     (if (<= ps-print-height 0)
        (error "Bad vertical layout:
@@ -2618,8 +3978,9 @@ page-height == bm + print-height + tm - ho - hh
               ps-header-offset
               ps-header-pad
               (+ ps-header-pad
-                 ps-header-title-line-height
-                 (* ps-header-line-height (1- ps-header-lines))
+                 (ps-title-line-height 'ps-font-for-header)
+                 (* (ps-line-height 'ps-font-for-header)
+                    (1- ps-header-lines))
                  ps-header-pad)
               ps-print-height))))
 
@@ -2636,19 +3997,48 @@ page-height == bm + print-height + tm - ho - hh
 
 ;; The following functions implement a simple list-buffering scheme so
 ;; that ps-print doesn't have to repeatedly switch between buffers
-;; while spooling.  The functions ps-output and ps-output-string build
-;; up the lists; the function ps-flush-output takes the lists and
+;; while spooling.  The functions `ps-output' and `ps-output-string' build
+;; up the lists; the function `ps-flush-output' takes the lists and
 ;; insert its contents into the spool buffer (*PostScript*).
 
+(defvar ps-string-escape-codes
+  (let ((table (make-vector 256 nil))
+       (char ?\000))
+    ;; control characters
+    (while (<= char ?\037)
+      (aset table char (format "\\%03o" char))
+      (setq char (1+ char)))
+    ;; printable characters
+    (while (< char ?\177)
+      (aset table char (format "%c" char))
+      (setq char (1+ char)))
+    ;; DEL and 8-bit characters
+    (while (<= char ?\377)
+      (aset table char (format "\\%o" char))
+      (setq char (1+ char)))
+    ;; Override ASCII formatting characters with named escape code:
+    (aset table ?\n "\\n")             ; [NL] linefeed
+    (aset table ?\r "\\r")             ; [CR] carriage return
+    (aset table ?\t "\\t")             ; [HT] horizontal tab
+    (aset table ?\b "\\b")             ; [BS] backspace
+    (aset table ?\f "\\f")             ; [NP] form feed
+    ;; Escape PostScript escape and string delimiter characters:
+    (aset table ?\\ "\\\\")
+    (aset table ?\( "\\(")
+    (aset table ?\) "\\)")
+    table)
+  "Vector used to map characters to PostScript string escape codes.")
+
 (defun ps-output-string-prim (string)
   (insert "(")                         ;insert start-string delimiter
   (save-excursion                      ;insert string
-    (insert string))
+    (insert (string-as-unibyte string)))
   ;; Find and quote special characters as necessary for PS
-  (while (re-search-forward "[()\\]" nil t)
-    (save-excursion
-      (forward-char -1)
-      (insert "\\")))
+  ;; This skips everything except control chars, nonascii chars, (, ) and \.
+  (while (progn (skip-chars-forward " -'*-[]-~") (not (eobp)))
+    (let ((special (following-char)))
+      (delete-char 1)
+      (insert (aref ps-string-escape-codes special))))
   (goto-char (point-max))
   (insert ")"))                                ;insert end-string delimiter
 
@@ -2667,16 +4057,28 @@ page-height == bm + print-height + tm - ho - hh
 (defun ps-output-list (the-list)
   (mapcar 'ps-output the-list))
 
+;; Output strings in the list ARGS in the PostScript prologue part.
+(defun ps-output-prologue (args)
+  (ps-output 'prologue (if (stringp args) (list args) args)))
+
 (defun ps-flush-output ()
   (save-excursion
     (set-buffer ps-spool-buffer)
     (goto-char (point-max))
     (while ps-output-head
       (let ((it (car ps-output-head)))
-       (if (not (eq t it))
-           (insert it)
+       (cond
+        ((eq t it)
          (setq ps-output-head (cdr ps-output-head))
-         (ps-output-string-prim (car ps-output-head))))
+         (ps-output-string-prim (car ps-output-head)))
+        ((eq 'prologue it)
+         (setq ps-output-head (cdr ps-output-head))
+         (save-excursion
+           (search-backward "\nBeginDoc")
+           (forward-char 1)
+           (apply 'insert (car ps-output-head))))
+        (t
+         (insert it))))
       (setq ps-output-head (cdr ps-output-head))))
   (ps-init-output-queue))
 
@@ -2858,9 +4260,32 @@ page-height == bm + print-height + tm - ho - hh
     (and has-local-background (ps-output "} def\n"))))
 
 
+;; Return a list of the distinct elements of LIST.
+;; Elements are compared with `equal'.
+(defun ps-remove-duplicates (list)
+  (let (new (tail list))
+    (while tail
+      (or (member (car tail) new)
+         (setq new (cons (car tail) new)))
+      (setq tail (cdr tail)))
+    (nreverse new)))
+
+;; Find the first occurrence of ITEM in LIST.
+;; Return the index of the matching item, or nil if not found.
+;; Elements are compared with `eq'.
+(defun ps-alist-position (item list)
+  (let ((tail list) (index 0) found)
+    (while tail
+      (if (setq found (eq (car (car tail)) item))
+         (setq tail nil)
+       (setq index (1+ index)
+             tail (cdr tail))))
+    (and found index)))
+
+
 (defun ps-begin-file ()
   (ps-get-page-dimensions)
-  (setq ps-showline-count (if ps-printing-region (car ps-printing-region) 1)
+  (setq ps-page-postscript 0
        ps-background-text-count 0
        ps-background-image-count 0
        ps-background-pages nil
@@ -2870,14 +4295,18 @@ page-height == bm + print-height + tm - ho - hh
             "%%Title: " (buffer-name)  ; Take job name from name of
                                        ; first buffer printed
             "\n%%Creator: " (user-full-name)
-            "\n%%CreationDate: "
+            " (using ps-print v" ps-print-version
+            ")\n%%CreationDate: "
             (time-stamp-hh:mm:ss) " " (time-stamp-mon-dd-yyyy)
             "\n%%Orientation: "
             (if ps-landscape-mode "Landscape" "Portrait")
             "\n%% DocumentFonts: Times-Roman Times-Italic "
-            ps-font " " ps-font-bold " " ps-font-italic " "
-            ps-font-bold-italic " "
-            ps-header-font " " ps-header-title-font
+            (mapconcat 'identity
+                       (ps-remove-duplicates
+                        (append (ps-fonts 'ps-font-for-text)
+                                (list (ps-font 'ps-font-for-header 'normal)
+                                      (ps-font 'ps-font-for-header 'bold))))
+                       " ")
             "\n%%Pages: (atend)\n"
             "%%EndComments\n\n")
 
@@ -2901,27 +4330,22 @@ page-height == bm + print-height + tm - ho - hh
             (format "/HeaderOffset %s def\n" ps-header-offset)
             (format "/HeaderPad    %s def\n" ps-header-pad))
 
-  (ps-output-boolean "PrintHeader"      ps-print-header)
-  (ps-output-boolean "PrintHeaderFrame" ps-print-header-frame)
-  (ps-output-boolean "ShowNofN"         ps-show-n-of-n)
-  (ps-output-boolean "Duplex"           ps-spool-duplex)
+  (ps-output-boolean "PrintHeader"        ps-print-header)
+  (ps-output-boolean "PrintOnlyOneHeader" ps-print-only-one-header)
+  (ps-output-boolean "PrintHeaderFrame"   ps-print-header-frame)
+  (ps-output-boolean "ShowNofN"           ps-show-n-of-n)
+  (ps-output-boolean "Duplex"             ps-spool-duplex)
 
-  (ps-output (format "/LineHeight   %s def\n" ps-line-height)
-            (format "/LinesPerColumn %d def\n"
-                    (round (/ (+ ps-print-height
-                                 (* ps-line-height 0.45))
-                              ps-line-height))))
+  (let ((line-height (ps-line-height 'ps-font-for-text)))
+    (ps-output (format "/LineHeight   %s def\n" line-height)
+              (format "/LinesPerColumn %d def\n"
+                      (round (/ (+ ps-print-height
+                                   (* line-height 0.45))
+                                line-height)))))
 
   (ps-output-boolean "Zebra" ps-zebra-stripes)
   (ps-output-boolean "PrintLineNumber" ps-line-number)
-  (ps-output (format "/NumberOfZebra %d def\n" ps-zebra-stripe-height)
-            (format "/Lines %d def\n"
-                    (if ps-printing-region
-                        (cdr ps-printing-region)
-                      (ps-count-lines (point-min) (point-max))))
-            "/PageCount 0 def\n")      ; set total page number
-                                       ; when printing has finished
-                                       ; (see `ps-generate')
+  (ps-output (format "/ZebraHeight %d def\n" ps-zebra-stripe-height))
 
   (ps-background-text)
   (ps-background-image)
@@ -2936,17 +4360,30 @@ page-height == bm + print-height + tm - ho - hh
 
   ;; Header fonts
   (ps-output (format "/h0 %s /%s DefFont\n" ; /h0 14 /Helvetica-Bold DefFont
-                    ps-header-title-font-size ps-header-title-font)
+                    ps-header-title-font-size (ps-font 'ps-font-for-header
+                                                       'bold))
             (format "/h1 %s /%s DefFont\n" ; /h1 12 /Helvetica DefFont
-                    ps-header-font-size       ps-header-font))
+                    ps-header-font-size (ps-font 'ps-font-for-header
+                                                 'normal)))
 
   (ps-output ps-print-prologue-2)
 
   ;; Text fonts
-  (ps-output (format "/f0 %s /%s DefFont\n" ps-font-size ps-font)
-            (format "/f1 %s /%s DefFont\n" ps-font-size ps-font-bold)
-            (format "/f2 %s /%s DefFont\n" ps-font-size ps-font-italic)
-            (format "/f3 %s /%s DefFont\n" ps-font-size ps-font-bold-italic))
+  (let ((font (ps-font-alist 'ps-font-for-text))
+       (i 0))
+    (while font
+      (ps-output (format "/f%d %s /%s DefFont\n"
+                        i
+                        ps-font-size
+                        (ps-font 'ps-font-for-text (car (car font)))))
+      (setq font (cdr font)
+           i (1+ i))))
+
+  (let ((font-entry (cdr (assq ps-font-family ps-font-info-database))))
+    (ps-output (format "/SpaceWidthRatio %f def\n"
+                      (/ (ps-lookup 'space-width) (ps-lookup 'size)))))
+
+  (ps-mule-initialize)
 
   (ps-output "\nBeginDoc\n\n"
             "%%EndPrologue\n"))
@@ -2973,12 +4410,37 @@ page-height == bm + print-height + tm - ho - hh
        (and (buffer-modified-p) " (unsaved)")))))
 
 (defun ps-begin-job ()
-  (setq ps-page-count 0))
+  (save-excursion
+    (set-buffer ps-spool-buffer)
+    (goto-char (point-max))
+    (and (re-search-backward "^%%Trailer$" nil t)
+        (delete-region (match-beginning 0) (point-max))))
+  (setq ps-showline-count (if ps-printing-region (car ps-printing-region) 1)
+       ps-page-count 0
+       ps-control-or-escape-regexp
+       (if ps-mule-charset-list
+           (cond ((eq ps-print-control-characters '8-bit)
+                  "[^\040-\176]")
+                 ((eq ps-print-control-characters 'control-8-bit)
+                  (string-as-multibyte "[^\040-\176\240-\377]"))
+                 ((eq ps-print-control-characters 'control)
+                  (string-as-multibyte "[^\040-\176\200-\377]"))
+                 (t (string-as-multibyte "[^\000-\011\013\015-\377")))
+         (cond ((eq ps-print-control-characters '8-bit)
+                (string-as-unibyte "[\000-\037\177-\377]"))
+               ((eq ps-print-control-characters 'control-8-bit)
+                (string-as-unibyte "[\000-\037\177-\237]"))
+               ((eq ps-print-control-characters 'control)
+                "[\000-\037\177]")
+               (t "[\t\n\f]")))))
+
+(defmacro ps-page-number ()
+  `(1+ (/ (1- ps-page-count) ps-number-of-columns)))
 
 (defun ps-end-file ()
-  (ps-output "\nEndDoc\n\n%%Trailer\n%%Pages: "
-            (format "%d" (1+ (/ (1- ps-page-count) ps-number-of-columns)))
-            "\n%%EOF\n"))
+  (ps-output "\n%%Trailer\n%%Pages: "
+            (format "%d" ps-page-postscript)
+            "\n\nEndDoc\n\n%%EOF\n"))
 
 
 (defun ps-next-page ()
@@ -2986,26 +4448,36 @@ page-height == bm + print-height + tm - ho - hh
   (ps-flush-output)
   (ps-begin-page))
 
-(defun ps-header-page (&optional inc-p)
-  (if (zerop (mod ps-page-count ps-number-of-columns))
+(defun ps-header-page ()
+  ;; set total line and page number when printing has finished
+  ;; (see `ps-generate')
+  (if (prog1
+         (zerop (mod ps-page-count ps-number-of-columns))
+       (setq ps-page-count (1+ ps-page-count)))
       ;; Print only when a new real page begins.
-      (let ((page-number (1+ (/ ps-page-count ps-number-of-columns))))
-       (ps-output (format "\n%%%%Page: %d %d\n" page-number page-number))
-       (ps-output "BeginDSCPage\n")
-       (ps-background page-number)
-       (and inc-p (incf ps-page-count)))
+      (progn
+       (setq ps-page-postscript (1+ ps-page-postscript))
+       (ps-output (format "\n%%%%Page: %d %d\n"
+                          ps-page-postscript ps-page-postscript))
+       (ps-output "/Lines 0 def\n/PageCount 0 def\nBeginDSCPage\n")
+       (ps-background ps-page-postscript)
+       (run-hooks 'ps-print-begin-page-hook))
     ;; Print when any other page begins.
-    (ps-output "BeginDSCPage\n")))
+    (ps-output "/Lines 0 def\n/PageCount 0 def\nBeginDSCPage\n")
+    (run-hooks 'ps-print-begin-column-hook)))
 
 (defun ps-begin-page ()
   (ps-get-page-dimensions)
   (setq ps-width-remaining  ps-print-width
-       ps-height-remaining ps-print-height)
+       ps-height-remaining ps-print-height
+       ps-mule-current-charset 'ascii)
 
   (ps-header-page)
 
   (ps-output (format "/LineNumber %d def\n" ps-showline-count)
-            (format "/PageNumber %d def\n" (incf ps-page-count)))
+            (format "/PageNumber %d def\n" (if ps-print-only-one-header
+                                               (ps-page-number)
+                                             ps-page-count)))
 
   (when ps-print-header
     (ps-generate-header "HeaderLinesLeft"    ps-left-header)
@@ -3021,7 +4493,7 @@ page-height == bm + print-height + tm - ho - hh
   (ps-output "EndPage\nEndDSCPage\n"))
 
 (defun ps-dummy-page ()
-  (ps-header-page t)
+  (ps-header-page)
   (ps-output "/PrintHeader false def
 BeginPage
 EndPage
@@ -3029,18 +4501,20 @@ EndDSCPage\n"))
 
 (defun ps-next-line ()
   (setq ps-showline-count (1+ ps-showline-count))
-  (if (< ps-height-remaining ps-line-height)
-      (ps-next-page)
-    (setq ps-width-remaining  ps-print-width
-         ps-height-remaining (- ps-height-remaining ps-line-height))
-    (ps-output "HL\n")))
+  (let ((lh (ps-line-height 'ps-font-for-text)))
+    (if (< ps-height-remaining lh)
+       (ps-next-page)
+      (setq ps-width-remaining  ps-print-width
+           ps-height-remaining (- ps-height-remaining lh))
+      (ps-output "HL\n"))))
 
 (defun ps-continue-line ()
-  (if (< ps-height-remaining ps-line-height)
-      (ps-next-page)
-    (setq ps-width-remaining  ps-print-width
-         ps-height-remaining (- ps-height-remaining ps-line-height))
-    (ps-output "SL\n")))
+  (let ((lh (ps-line-height 'ps-font-for-text)))
+    (if (< ps-height-remaining lh)
+       (ps-next-page)
+      (setq ps-width-remaining  ps-print-width
+           ps-height-remaining (- ps-height-remaining lh))
+      (ps-output "SL\n"))))
 
 (defun ps-find-wrappoint (from to char-width)
   (let ((avail (truncate (/ ps-width-remaining char-width)))
@@ -3050,15 +4524,23 @@ EndDSCPage\n"))
       (cons (+ from avail) ps-width-remaining))))
 
 (defun ps-basic-plot-string (from to &optional bg-color)
-  (let* ((wrappoint (ps-find-wrappoint from to ps-avg-char-width))
+  (let* ((wrappoint (ps-find-wrappoint from to
+                                      (ps-avg-char-width 'ps-font-for-text)))
         (to (car wrappoint))
-        (string (buffer-substring-no-properties from to)))
+        (string (buffer-substring-no-properties from to))
+        (font-spec
+         (ps-mule-get-font-spec
+          'ascii
+          (car (nth ps-current-font (ps-font-alist 'ps-font-for-text))))))
+    (and font-spec
+        (ps-mule-prepare-font font-spec string 'ascii))
     (ps-output-string string)
     (ps-output " S\n")
     wrappoint))
 
 (defun ps-basic-plot-whitespace (from to &optional bg-color)
-  (let* ((wrappoint (ps-find-wrappoint from to ps-space-width))
+  (let* ((wrappoint (ps-find-wrappoint from to
+                                      (ps-space-width 'ps-font-for-text)))
         (to (car wrappoint)))
     (ps-output (format "%d W\n" (- to from)))
     wrappoint))
@@ -3076,7 +4558,7 @@ EndDSCPage\n"))
       (let* ((q-todo (- (point-max) (point-min)))
             (q-done (- (point) (point-min)))
             (chunkfrac (/ q-todo 8))
-            (chunksize (if (> chunkfrac 1000) 1000 chunkfrac)))
+            (chunksize (min chunkfrac 1000)))
        (if (> (- q-done ps-razchunk) chunksize)
            (progn
              (setq ps-razchunk q-done)
@@ -3087,7 +4569,8 @@ EndDSCPage\n"))
                       ))))))
 
 (defun ps-set-font (font)
-  (ps-output (format "/f%d F\n" (setq ps-current-font font))))
+  (setq ps-last-font (format "f%d" (setq ps-current-font font)))
+  (ps-output (format "/%s F\n" ps-last-font)))
 
 (defun ps-set-bg (color)
   (if (setq ps-current-bg color)
@@ -3128,6 +4611,8 @@ EndDSCPage\n"))
     (ps-output (number-to-string effects) " EF\n")
     (setq ps-current-effect effects)))
 
+  (setq ps-mule-current-charset 'ascii)
+
   ;; Starting at the beginning of the specified region...
   (save-excursion
     (goto-char from)
@@ -3135,50 +4620,84 @@ EndDSCPage\n"))
     ;; ...break the region up into chunks separated by tabs, linefeeds,
     ;; pagefeeds, control characters, and plot each chunk.
     (while (< from to)
-      (if (re-search-forward "[\000-\037\177-\377]" to t)
-         ;; region with some control characters
-         (let ((match (char-after (match-beginning 0))))
-           (if (= match ?\t)           ; tab
-               (let ((linestart
-                      (save-excursion (beginning-of-line) (point))))
-                 (ps-plot 'ps-basic-plot-string from (1- (point))
-                          bg-color)
-                 (forward-char -1)
-                 (setq from (+ linestart (current-column)))
-                 (if (re-search-forward "[ \t]+" to t)
-                     (ps-plot 'ps-basic-plot-whitespace
-                              from (+ linestart (current-column))
-                              bg-color)))
-             ;; any other control character except tab
-             (ps-plot 'ps-basic-plot-string from (1- (point)) bg-color)
-             (cond
-              ((= match ?\n)           ; newline
-               (ps-next-line))
-
-              ((= match ?\f)           ; form feed
-               (ps-next-page))
-
-              ((<= match ?\037)        ; characters from ^@ to ^_
-               (ps-control-character (format "^%c" (+ match ?@))))
-
-              ((= match ?\177)         ; del (127) is printed ^?
-               (ps-control-character "^?"))
-
-              (t                       ; characters from 128 to 255
-               (ps-control-character (format "\\%o" match)))))
+      (if (re-search-forward ps-control-or-escape-regexp to t)
+         ;; region with some control characters or some multibyte characters
+         (let* ((match-point (match-beginning 0))
+                (match (char-after match-point)))
+           (when (< from match-point)
+             (unless (eq ps-mule-current-charset 'ascii)
+               (ps-set-font ps-current-font)
+               (setq ps-mule-current-charset 'ascii))
+             (ps-plot 'ps-basic-plot-string from match-point bg-color))
+           (cond
+            ((= match ?\t)             ; tab
+             (let ((linestart (line-beginning-position)))
+               (forward-char -1)
+               (setq from (+ linestart (current-column)))
+               (when (re-search-forward "[ \t]+" to t)
+                 (unless (eq ps-mule-current-charset 'ascii)
+                   (ps-set-font ps-current-font)
+                   (setq ps-mule-current-charset 'ascii))
+                 (ps-plot 'ps-basic-plot-whitespace
+                          from (+ linestart (current-column))
+                          bg-color))))
+
+            ((= match ?\n)             ; newline
+             (ps-next-line))
+
+            ((= match ?\f)             ; form feed
+             ;; do not skip page if previous character is NEWLINE and
+             ;; it is a beginning of page.
+             (or (and (= (char-after (1- match-point)) ?\n)
+                      (= ps-height-remaining ps-print-height))
+                 (ps-next-page)))
+
+            ((> match 255)             ; a multibyte character
+             (let ((charset (char-charset match)))
+               (or (eq charset 'composition)
+                   (ps-mule-skip-same-charset charset))
+               (setq ps-mule-current-charset charset)
+               (ps-plot 'ps-mule-plot-string match-point (point) bg-color)))
+                                       ; characters from ^@ to ^_ and
+            (t                         ; characters from 127 to 255
+             (ps-control-character match)))
            (setq from (point)))
-       ;; region without control characters
+       ;; region without control characters nor multibyte characters
+       (when (not (eq ps-mule-current-charset 'ascii))
+         (ps-set-font  ps-current-font)
+         (setq ps-mule-current-charset 'ascii))
        (ps-plot 'ps-basic-plot-string from to bg-color)
        (setq from to)))))
 
-(defun ps-control-character (str)
-  (let* ((from (1- (point)))
+(defvar ps-string-control-codes
+  (let ((table (make-vector 256 nil))
+       (char ?\000))
+    ;; control character
+    (while (<= char ?\037)
+      (aset table char (format "^%c" (+ char ?@)))
+      (setq char (1+ char)))
+    ;; printable character
+    (while (< char ?\177)
+      (aset table char (format "%c" char))
+      (setq char (1+ char)))
+    ;; DEL
+    (aset table char "^?")
+    ;; 8-bit character
+    (while (<= (setq char (1+ char)) ?\377)
+      (aset table char (format "\\%o" char)))
+    table)
+  "Vector used to map characters to a printable string.")
+
+(defun ps-control-character (char)
+  (let* ((str (aref ps-string-control-codes char))
+        (from (1- (point)))
         (len (length str))
         (to (+ from len))
-        (wrappoint (ps-find-wrappoint from to ps-avg-char-width)))
+        (char-width (ps-avg-char-width 'ps-font-for-text))
+        (wrappoint (ps-find-wrappoint from to char-width)))
     (if (< (car wrappoint) to)
        (ps-continue-line))
-    (setq ps-width-remaining (- ps-width-remaining (* len ps-avg-char-width)))
+    (setq ps-width-remaining (- ps-width-remaining (* len char-width)))
     (ps-output-string str)
     (ps-output " S\n")))
 
@@ -3189,8 +4708,15 @@ EndDSCPage\n"))
 (defun ps-color-values (x-color)
   (cond ((fboundp 'x-color-values)
         (x-color-values x-color))
-       ((fboundp 'pixel-components)
-        (pixel-components x-color))
+       ((and (fboundp 'color-instance-rgb-components)
+             (ps-color-device))
+        (color-instance-rgb-components
+         (if (color-instance-p x-color)
+             x-color
+           (make-color-instance
+            (if (color-specifier-p x-color)
+                (color-name x-color)
+              x-color)))))
        (t (error "No available function to determine X color values."))))
 
 
@@ -3215,10 +4741,10 @@ If FACE is not a valid face name, it is used default face."
 (defun ps-face-attribute-list (face-or-list)
   (if (listp face-or-list)
       ;; list of faces
-      (let ((effects 0) foreground background face-attr face)
+      (let ((effects 0)
+           foreground background face-attr)
        (while face-or-list
-         (setq face (car face-or-list)
-               face-attr (ps-face-attributes face)
+         (setq face-attr (ps-face-attributes (car face-or-list))
                effects (logior effects (aref face-attr 0)))
          (or foreground (setq foreground (aref face-attr 1)))
          (or background (setq background (aref face-attr 2)))
@@ -3228,46 +4754,69 @@ If FACE is not a valid face name, it is used default face."
     (ps-face-attributes face-or-list)))
 
 
+(defconst ps-font-type (vector nil 'bold 'italic 'bold-italic))
+
+
 (defun ps-plot-with-face (from to face)
-  (if face
-      (let* ((face-bit   (ps-face-attribute-list face))
-            (effect     (aref face-bit 0))
-            (foreground (aref face-bit 1))
-            (background (aref face-bit 2))
-            (fg-color (if (and ps-print-color-p foreground)
-                          (mapcar 'ps-color-value
-                                  (ps-color-values foreground))
-                        ps-default-color))
-            (bg-color (and ps-print-color-p background
-                           (mapcar 'ps-color-value
-                                   (ps-color-values background)))))
-       (ps-plot-region from to (logand effect 3)
-                       fg-color bg-color (lsh effect -2)))
+  (cond
+   ((null face)                                ; print text with null face
     (ps-plot-region from to 0))
+   ((eq face 'emacs--invisible--face)) ; skip invisible text!!!
+   (t                                  ; otherwise, text has a valid face
+    (let* ((face-bit   (ps-face-attribute-list face))
+          (effect     (aref face-bit 0))
+          (foreground (aref face-bit 1))
+          (background (aref face-bit 2))
+          (fg-color (if (and ps-print-color-p foreground (ps-color-device))
+                        (mapcar 'ps-color-value
+                                (ps-color-values foreground))
+                      ps-default-color))
+          (bg-color (and ps-print-color-p background (ps-color-device)
+                         (mapcar 'ps-color-value
+                                 (ps-color-values background)))))
+      (ps-plot-region
+       from to
+       (ps-font-number 'ps-font-for-text
+                      (or (aref ps-font-type (logand effect 3))
+                          face))
+       fg-color bg-color (lsh effect -2)))))
   (goto-char to))
 
 
 (defun ps-xemacs-face-kind-p (face kind kind-regex kind-list)
-  (let* ((frame-font (or (face-font face) (face-font 'default)))
-        (kind-cons (assq kind (x-font-properties frame-font)))
+  (let* ((frame-font (or (face-font-instance face)
+                        (face-font-instance 'default)))
+        (kind-cons (and frame-font
+                        (assq kind (font-instance-properties frame-font))))
         (kind-spec (cdr-safe kind-cons))
         (case-fold-search t))
     (or (and kind-spec (string-match kind-regex kind-spec))
        ;; Kludge-compatible:
        (memq face kind-list))))
 
-(defun ps-face-bold-p (face)
-  (if (eq ps-print-emacs-type 'emacs)
-      (or (face-bold-p face)
-         (memq face ps-bold-faces))
-    (ps-xemacs-face-kind-p face 'WEIGHT_NAME "bold\\|demibold" ps-bold-faces)))
 
-(defun ps-face-italic-p (face)
-  (if (eq ps-print-emacs-type 'emacs)
-      (or (face-italic-p face)
-         (memq face ps-italic-faces))
-    (or (ps-xemacs-face-kind-p face 'ANGLE_NAME "i\\|o" ps-italic-faces)
-       (ps-xemacs-face-kind-p face 'SLANT "i\\|o" ps-italic-faces))))
+(cond ((eq ps-print-emacs-type 'emacs)  ; emacs
+
+       (defun ps-face-bold-p (face)
+        (or (face-bold-p face)
+            (memq face ps-bold-faces)))
+
+       (defun ps-face-italic-p (face)
+        (or (face-italic-p face)
+            (memq face ps-italic-faces)))
+       )
+                                       ; xemacs
+                                       ; lucid
+                                       ; epoch
+      (t                               ; epoch
+       (defun ps-face-bold-p (face)
+        (ps-xemacs-face-kind-p face 'WEIGHT_NAME "bold\\|demibold" ps-bold-faces))
+
+       (defun ps-face-italic-p (face)
+        (or (ps-xemacs-face-kind-p face 'ANGLE_NAME "i\\|o" ps-italic-faces)
+            (ps-xemacs-face-kind-p face 'SLANT "i\\|o" ps-italic-faces)))
+       ))
+
 
 (defun ps-face-underlined-p (face)
   (or (face-underline-p face)
@@ -3279,6 +4828,10 @@ If FACE is not a valid face name, it is used default face."
 
 
 (defun ps-build-reference-face-lists ()
+  ;; Ensure that face database is updated with faces on
+  ;; `font-lock-face-attributes' (obsolete stuff)
+  (ps-font-lock-face-attributes)
+  ;; Now, rebuild reference face lists
   (setq ps-print-face-alist nil)
   (if ps-auto-font-detect
       (mapcar 'ps-map-face (face-list))
@@ -3335,15 +4888,14 @@ If FACE is not a valid face name, it is used default face."
   (< (extent-priority a) (extent-priority b)))
 
 (defun ps-print-ensure-fontified (start end)
-  (and (boundp 'lazy-lock-mode) lazy-lock-mode
+  (and (boundp 'lazy-lock-mode) (symbol-value 'lazy-lock-mode)
        (if (fboundp 'lazy-lock-fontify-region)
           (lazy-lock-fontify-region start end) ; the new
         (lazy-lock-fontify-buffer))))  ; the old
 
 (defun ps-generate-postscript-with-faces (from to)
   ;; Some initialization...
-  (setq ps-current-effect 0
-       ps-print-face-alist nil)
+  (setq ps-current-effect 0)
 
   ;; Build the reference lists of faces if necessary.
   (if (or ps-always-build-face-reference
@@ -3355,7 +4907,7 @@ If FACE is not a valid face name, it is used default face."
   ;; that ps-print can be dumped into emacs.  This expression can't be
   ;; evaluated at dump-time because X isn't initialized.
   (setq ps-print-color-scale
-       (if ps-print-color-p
+       (if (and ps-print-color-p (ps-color-device))
            (float (car (ps-color-values "white")))
          1.0))
   ;; Generate some PostScript.
@@ -3416,7 +4968,19 @@ If FACE is not a valid face name, it is used default face."
 
        ((eq ps-print-emacs-type 'emacs)
        (let ((property-change from)
-             (overlay-change from))
+             (overlay-change from)
+             (save-buffer-invisibility-spec buffer-invisibility-spec)
+             (buffer-invisibility-spec
+              (and (listp buffer-invisibility-spec)
+                   (let ((seq buffer-invisibility-spec)
+                         elt res)
+                     (while seq
+                       (setq elt (car seq)
+                             seq (cdr seq))
+                       (or (eq elt 'invisible)
+                           (and (listp elt) (eq (car elt) 'invisible))
+                           (setq res (cons elt res))))
+                     (nreverse seq)))))
          (while (< from to)
            (if (< property-change to)  ; Don't search for property change
                                        ; unless previous search succeeded.
@@ -3437,11 +5001,11 @@ If FACE is not a valid face name, it is used default face."
                  (cond ((let ((prop (get-text-property from 'invisible)))
                           ;; Decide whether this invisible property
                           ;; really makes the text invisible.
-                          (if (eq buffer-invisibility-spec t)
+                          (if (eq save-buffer-invisibility-spec t)
                               (not (null prop))
-                            (or (memq prop buffer-invisibility-spec)
-                                (assq prop buffer-invisibility-spec))))
-                        nil)
+                            (or (memq prop save-buffer-invisibility-spec)
+                                (assq prop save-buffer-invisibility-spec))))
+                        'emacs--invisible--face)
                        ((get-text-property from 'face))
                        (t 'default)))
            (let ((overlays (overlays-at from))
@@ -3455,14 +5019,15 @@ If FACE is not a valid face name, it is used default face."
                                             0)))
                  (and (or overlay-invisible overlay-face)
                       (> overlay-priority face-priority)
-                      (setq face (cond ((if (eq buffer-invisibility-spec t)
-                                            (not (null overlay-invisible))
-                                          (or (memq overlay-invisible
-                                                    buffer-invisibility-spec)
-                                              (assq overlay-invisible
-                                                    buffer-invisibility-spec)))
-                                        nil)
-                                       ((and face overlay-face)))
+                      (setq face
+                            (cond ((if (eq save-buffer-invisibility-spec t)
+                                       (not (null overlay-invisible))
+                                     (or (memq overlay-invisible
+                                               save-buffer-invisibility-spec)
+                                         (assq overlay-invisible
+                                               save-buffer-invisibility-spec)))
+                                   nil)
+                                  ((and face overlay-face)))
                             face-priority overlay-priority)))
                (setq overlays (cdr overlays))))
            ;; Plot up to this record.
@@ -3482,9 +5047,8 @@ If FACE is not a valid face name, it is used default face."
          (inhibit-read-only t))
       (save-restriction
        (narrow-to-region from to)
-       (if ps-razzle-dazzle
-           (message "Formatting...%3d%%" (setq ps-razchunk 0)))
-       (set-buffer buffer)
+       (and ps-razzle-dazzle
+            (message "Formatting...%3d%%" (setq ps-razchunk 0)))
        (setq ps-source-buffer buffer
              ps-spool-buffer (get-buffer-create ps-spool-buffer-name))
        (ps-init-output-queue)
@@ -3492,6 +5056,7 @@ If FACE is not a valid face name, it is used default face."
          (unwind-protect
              (progn
                (set-buffer ps-spool-buffer)
+               (set-buffer-multibyte nil)
 
                ;; Get a marker and make it point to the current end of the
                ;; buffer,  If an error occurs, we'll delete everything from
@@ -3505,6 +5070,7 @@ If FACE is not a valid face name, it is used default face."
                (save-excursion
                  (set-buffer ps-source-buffer)
                  (if needs-begin-file (ps-begin-file))
+                 (ps-mule-begin from to)
                  (ps-begin-job)
                  (ps-begin-page))
                (set-buffer ps-source-buffer)
@@ -3513,14 +5079,22 @@ If FACE is not a valid face name, it is used default face."
 
                (and ps-spool-duplex (= (mod ps-page-count 2) 1)
                     (ps-dummy-page))
+               (ps-end-file)
                (ps-flush-output)
 
                ;; Back to the PS output buffer to set the page count
-               (set-buffer ps-spool-buffer)
-               (goto-char (point-min))
-               (and (re-search-forward "^/PageCount 0 def$" nil t)
-                    (replace-match (format "/PageCount %d def" ps-page-count)
-                                   t))
+               (let ((total-lines (if ps-printing-region
+                                      (cdr ps-printing-region)
+                                    (ps-count-lines (point-min) (point-max))))
+                     (total-pages (if ps-print-only-one-header
+                                      (ps-page-number)
+                                    ps-page-count)))
+                 (set-buffer ps-spool-buffer)
+                 (goto-char (point-min))
+                 (while (re-search-forward "^/Lines 0 def\n/PageCount 0 def$"
+                                           nil t)
+                   (replace-match (format "/Lines %d def\n/PageCount %d def"
+                                          total-lines total-pages) t)))
 
                ;; Setting this variable tells the unwind form that the
                ;; the PostScript was generated without error.
@@ -3535,43 +5109,75 @@ If FACE is not a valid face name, it is used default face."
                   (set-buffer ps-spool-buffer)
                   (delete-region (marker-position safe-marker) (point-max))))))
 
-       (if ps-razzle-dazzle
-           (message "Formatting...done"))))))
+       (and ps-razzle-dazzle (message "Formatting...done"))))))
+
+;; To avoid compilation gripes
+(defvar dos-ps-printer nil)
 
+;; Permit dynamic evaluation at print time of `ps-lpr-switches'.
 (defun ps-do-despool (filename)
   (if (or (not (boundp 'ps-spool-buffer))
          (not (symbol-value 'ps-spool-buffer)))
       (message "No spooled PostScript to print")
-    (ps-end-file)
-    (ps-flush-output)
     (if filename
        (save-excursion
-         (if ps-razzle-dazzle
-             (message "Saving..."))
+         (and ps-razzle-dazzle (message "Saving..."))
          (set-buffer ps-spool-buffer)
          (setq filename (expand-file-name filename))
-         (write-region (point-min) (point-max) filename)
-         (if ps-razzle-dazzle
-             (message "Wrote %s" filename)))
+         (let ((coding-system-for-write 'raw-text-unix))
+           (write-region (point-min) (point-max) filename))
+         (and ps-razzle-dazzle (message "Wrote %s" filename)))
       ;; Else, spool to the printer
-      (if ps-razzle-dazzle
-         (message "Printing..."))
+      (and ps-razzle-dazzle (message "Printing..."))
       (save-excursion
        (set-buffer ps-spool-buffer)
-       (if (and (eq system-type 'ms-dos)
-                (stringp (symbol-value 'dos-ps-printer)))
-           (write-region (point-min) (point-max)
-                         (symbol-value 'dos-ps-printer) t 0)
-         (let ((binary-process-input t)) ; for MS-DOS
+       (let* ((coding-system-for-write 'raw-text-unix)
+              (ps-printer-name (or ps-printer-name printer-name))
+              (ps-lpr-switches
+               (append (and (stringp ps-printer-name)
+                            (list (concat "-P" ps-printer-name)))
+                       ps-lpr-switches)))
+         (if (and (memq system-type '(ms-dos windows-nt))
+                  (or (stringp dos-ps-printer)
+                      (stringp ps-printer-name)))
+             (write-region (point-min) (point-max)
+                           (if (stringp  dos-ps-printer)
+                               dos-ps-printer
+                             ps-printer-name)
+                           t 0)
            (apply 'call-process-region
                   (point-min) (point-max) ps-lpr-command nil
-                  (if (fboundp 'start-process) 0 nil)
+                  (and (fboundp 'start-process) 0)
                   nil
-                  ps-lpr-switches))))
-      (if ps-razzle-dazzle
-         (message "Printing...done")))
+                  (ps-flatten-list     ; dynamic evaluation
+                   (mapcar 'ps-eval-switch ps-lpr-switches))))))
+      (and ps-razzle-dazzle (message "Printing...done")))
     (kill-buffer ps-spool-buffer)))
 
+;; Dynamic evaluation
+(defun ps-eval-switch (arg)
+  (cond ((stringp arg) arg)
+       ((functionp arg) (apply arg nil))
+       ((symbolp arg) (symbol-value arg))
+       ((consp arg) (apply (car arg) (cdr arg)))
+       (t nil)))
+
+;; `ps-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.
+
+;; (ps-flatten-list '((a . b) c (d . e) (f g h) i . j))
+;; => (a b c d e f g h i j)
+
+(defun ps-flatten-list (&rest list)
+  (ps-flatten-list-1 list))
+
+(defun ps-flatten-list-1 (list)
+  (cond ((null list) nil)
+       ((consp list) (append (ps-flatten-list-1 (car list))
+                             (ps-flatten-list-1 (cdr list))))
+       (t (list list))))
+
 (defun ps-kill-emacs-check ()
   (let (ps-buffer)
     (and (setq ps-buffer (get-buffer ps-spool-buffer-name))