*** empty log message ***
[bpt/emacs.git] / lisp / ps-mule.el
index c2a7e88..7cf3c78 100644 (file)
@@ -1,13 +1,13 @@
 ;;; ps-mule.el --- Provide multi-byte character facility to ps-print.
 
-;; Copyright (C) 1998 Free Software Foundation, Inc.
+;; Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
 
 ;; Author:     Vinicius Jose Latorre <vinicius@cpqd.com.br>
 ;; Author:     Kenichi Handa <handa@etl.go.jp> (multi-byte characters)
 ;; Maintainer: Kenichi Handa <handa@etl.go.jp> (multi-byte characters)
 ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
-;; Keywords:   print, PostScript, multibyte, mule
-;; Time-stamp: <98/12/15 14:04:50 handa>
+;; Keywords:   wp, print, PostScript, multibyte, mule
+;; Time-stamp: <2000/08/01 11:17:35 vinicius>
 
 ;; This file is part of GNU Emacs.
 
@@ -28,7 +28,7 @@
 
 ;;; Commentary:
 
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;
 ;; About ps-mule
 ;; -------------
 ;;
 ;; Valid values for `ps-multibyte-buffer' are:
 ;;
-;;  nil                     This is the value to use when you are printing
-;;                         buffer with only ASCII and Latin characters.
+;;  nil                     This is the value to use the default settings which
+;;                         is by default for printing buffer with only ASCII
+;;                         and Latin characters.   The default setting can be
+;;                         changed by setting the variable
+;;                         `ps-mule-font-info-database-default' differently.
+;;                         The initial value of this variable is
+;;                         `ps-mule-font-info-database-latin' (see
+;;                         documentation).
 ;;
 ;;  `non-latin-printer'     This is the value to use when you have a japanese
 ;;                         or korean PostScript printer and want to print
 ;;
 ;; The default is nil.
 ;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 ;;; Code:
 
 (eval-and-compile (require 'ps-print))
 
+
 ;;;###autoload
 (defcustom ps-multibyte-buffer nil
   "*Specifies the multi-byte buffer handling.
 
 Valid values are:
 
-  nil                     This is the value to use when you are printing
-                         buffer with only ASCII and Latin characters.
-
-  `non-latin-printer'     This is the value to use when you have a japanese
-                         or korean PostScript printer and want to print
+  nil                     This is the value to use the default settings which
+                         is by default for printing buffer with only ASCII
+                         and Latin characters.   The default setting can be
+                         changed by setting the variable
+                         `ps-mule-font-info-database-default' differently.
+                         The initial value of this variable is
+                         `ps-mule-font-info-database-latin' (see
+                         documentation).
+
+  `non-latin-printer'     This is the value to use when you have a Japanese
+                         or Korean PostScript printer and want to print
                          buffer with ASCII, Latin-1, Japanese (JISX0208 and
                          JISX0201-Kana) and Korean characters.  At present,
                          it was not tested the Korean characters printing.
@@ -123,13 +136,15 @@ Valid values are:
                          `ps-header-font-family' and `ps-font-info-database'.
 
 Any other value is treated as nil."
-  :type '(choice (const non-latin-printer) (const bdf-font)
-                (const bdf-font-except-latin) (other :tag "nil" nil))
+  :type '(choice (const non-latin-printer)     (const bdf-font)
+                (const bdf-font-except-latin) (const :tag "nil" nil))
   :group 'ps-print-font)
 
+
 ;; For Emacs 20.2 and the earlier version.
 (eval-and-compile
-  (if (not (string< mule-version "4.0"))
+  (if (and (boundp 'mule-version)      ; only if mule package is loaded
+          (not (string< mule-version "4.0")))
       (progn
        (defalias 'ps-mule-next-point '1+)
        (defalias 'ps-mule-chars-in-string 'length)
@@ -143,8 +158,24 @@ Any other value is treated as nil."
     (defun ps-mule-string-char (string idx)
       (string-to-char (substring string idx)))
     (defun ps-mule-next-index (string i)
-      (+ i (charset-bytes (char-charset (string-to-char string))))))
-  )
+      (+ i (charset-bytes (char-charset (string-to-char string)))))
+    ))
+
+;; For Emacs 20.4 and the earlier version.
+(eval-and-compile
+ (when (and (boundp 'mule-version)
+           (string< mule-version "5.0"))
+   (defun encode-composition-rule (rule)
+     (if (= (car rule) 4) (setcar rule 10))
+     (if (= (cdr rule) 4) (setcdr rule 10))
+     (+ (* (car rule) 12) (cdr rule)))
+   (defun find-composition (pos &rest ignore)
+     (let ((ch (char-after pos)))
+       (if (eq (char-charset ch) 'composition)
+          (let ((components (decompose-composite-char ch 'vector t)))
+            (list pos (ps-mule-next-point pos) components
+                  (integerp (aref components 1)) nil
+                  (char-width ch))))))))
 
 (defvar ps-mule-font-info-database
   nil
@@ -163,8 +194,9 @@ FONT-SRC is a font source: builtin, ps-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 `ps-bdf' is required.
+  If FONT-SRC is bdf, FONT-NAME is a BDF font file name, or a list of
+  alternative font names.  To use this font, the external library `ps-bdf'
+  is required.
 
   If FONT-SRC is vflib, FONT-NAME is the name of a font that VFlib knows.
   To use this font, the external library `vflib' is required.
@@ -192,20 +224,26 @@ See also the variable `ps-font-info-database'.")
      (normal nil nil iso-latin-1)))
   "Sample setting of `ps-mule-font-info-database' to use latin fonts.")
 
+(defcustom ps-mule-font-info-database-default
+  ps-mule-font-info-database-latin
+  "*The default setting to use when `ps-multibyte-buffer' is nil."
+  :type '(symbol :tag "Multi-Byte Buffer Database Font Default")
+  :group 'ps-print-font)
+
 (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)
+     (normal 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))
+     (normal builtin "Munhwa-Regular-KSC-EUC-H" ps-mule-encode-7bit 2)
+     (bold builtin "Munhwa-Bold-KSC-EUC-H" ps-mule-encode-7bit 2))
     )
   "Sample setting of the `ps-mule-font-info-database' to use builtin PS font.
 
@@ -213,36 +251,36 @@ 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))
+     (normal bdf ("lt1-24-etl.bdf" "etl24-latin1.bdf") nil 1)
+     (bold bdf ("lt1-16b-etl.bdf" "etl16b-latin1.bdf") nil 1)
+     (italic bdf ("lt1-16i-etl.bdf" "etl16i-latin1.bdf") nil 1)
+     (bold-italic bdf ("lt1-16bi-etl.bdf" "etl16bi-latin1.bdf") nil 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))
+     (normal bdf ("lt1-24-etl.bdf" "etl24-latin1.bdf") iso-latin-1 1)
+     (bold bdf ("lt1-16b-etl.bdf" "etl16b-latin1.bdf") iso-latin-1 1)
+     (italic bdf ("lt1-16i-etl.bdf" "etl16i-latin1.bdf") iso-latin-1 1)
+     (bold-italic bdf ("lt1-16bi-etl.bdf" "etl16bi-latin1.bdf") iso-latin-1 1))
     (latin-iso8859-2
-     (normal bdf "etl24-latin2.bdf" iso-latin-2 1))
+     (normal bdf ("lt2-24-etl.bdf" "etl24-latin2.bdf") iso-latin-2 1))
     (latin-iso8859-3
-     (normal bdf "etl24-latin3.bdf" iso-latin-3 1))
+     (normal bdf ("lt3-24-etl.bdf" "etl24-latin3.bdf") iso-latin-3 1))
     (latin-iso8859-4
-     (normal bdf "etl24-latin4.bdf" iso-latin-4 1))
+     (normal bdf ("lt4-24-etl.bdf" "etl24-latin4.bdf") iso-latin-4 1))
     (thai-tis620
-     (normal bdf "thai-24.bdf" thai-tis620 1))
+     (normal bdf ("thai24.bdf" "thai-24.bdf") thai-tis620 1))
     (greek-iso8859-7
-     (normal bdf "etl24-greek.bdf" greek-iso-8bit 1))
+     (normal bdf ("grk24-etl.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))
+     (normal bdf ("heb24-etl.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))
+     (normal bdf ("cyr24-etl.bdf" "etl24-cyrillic.bdf") cyrillic-iso-8bit 1))
     (latin-iso8859-9
-     (normal bdf "etl24-latin5.bdf" iso-latin-5 1))
+     (normal bdf ("lt5-24-etl.bdf" "etl24-latin5.bdf") iso-latin-5 1))
     (japanese-jisx0208-1978
      (normal bdf "jiskan24.bdf" ps-mule-encode-7bit 2))
     (chinese-gb2312
@@ -252,54 +290,55 @@ Currently, data for Japanese and Korean PostScript printers are listed.")
     (korean-ksc5601
      (normal bdf "hanglm24.bdf" ps-mule-encode-7bit 2))
     (japanese-jisx0212
-     (normal bdf "jisksp40.bdf" ps-mule-encode-7bit 2))
+     (normal bdf ("jksp40.bdf" "jisksp40.bdf") ps-mule-encode-7bit 2))
     (chinese-cns11643-1
-     (normal bdf "cns-1-40.bdf" ps-mule-encode-7bit 2))
+     (normal bdf ("cns1-40.bdf" "cns-1-40.bdf") ps-mule-encode-7bit 2))
     (chinese-cns11643-2
-     (normal bdf "cns-2-40.bdf" ps-mule-encode-7bit 2))
+     (normal bdf ("cns2-40.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))
+     (normal bdf ("sish24-etl.bdf" "etl24-sisheng.bdf") ps-mule-encode-7bit 1))
     (ipa
-     (normal bdf "etl24-ipa.bdf" ps-mule-encode-8bit 1))
+     (normal bdf ("ipa24-etl.bdf" "etl24-ipa.bdf") ps-mule-encode-8bit 1))
     (vietnamese-viscii-lower
-     (normal bdf "etl24-viscii.bdf" vietnamese-viscii 1))
+     (normal bdf ("visc24-etl.bdf" "etl24-viscii.bdf") vietnamese-viscii 1))
     (vietnamese-viscii-upper
-     (normal bdf "etl24-viscii.bdf" vietnamese-viscii 1))
+     (normal bdf ("visc24-etl.bdf" "etl24-viscii.bdf") vietnamese-viscii 1))
     (arabic-digit
-     (normal bdf "etl24-arabic0.bdf" ps-mule-encode-7bit 1))
+     (normal bdf ("arab24-0-etl.bdf" "etl24-arabic0.bdf") ps-mule-encode-7bit 1))
     (arabic-1-column
-     (normal bdf "etl24-arabic1.bdf" ps-mule-encode-7bit 1))
+     (normal bdf ("arab24-1-etl.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))
+     (normal bdf ("lao24-mule.bdf" "mule-lao-24.bdf") lao 1))
     (arabic-2-column
-     (normal bdf "etl24-arabic2.bdf" ps-mule-encode-7bit 1))
+     (normal bdf ("arab24-2-etl.bdf" "etl24-arabic2.bdf") ps-mule-encode-7bit 1))
     (indian-is13194
-     (normal bdf "mule-iscii-24.bdf" ps-mule-encode-7bit 1))
+     (normal bdf ("isci24-etl.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))
+     (normal bdf ("ind1c24-mule.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))
+     (normal bdf ("tib1c24-mule.bdf" "mule-tibmdx-1col-24.bdf") ps-mule-encode-7bit 2))
     (ethiopic
-     (normal bdf "ethiomx24f-uni.bdf" ps-mule-encode-ethiopic 2))
+     (normal bdf ("ethio24f-uni.bdf" "ethiomx24f-uni.bdf") ps-mule-encode-ethiopic 2))
     (chinese-cns11643-3
-     (normal bdf "cns-3-40.bdf" ps-mule-encode-7bit 2))
+     (normal bdf ("cns3-40.bdf" "cns-3-40.bdf") ps-mule-encode-7bit 2))
     (chinese-cns11643-4
-     (normal bdf "cns-4-40.bdf" ps-mule-encode-7bit 2))
+     (normal bdf ("cns4-40.bdf" "cns-4-40.bdf") ps-mule-encode-7bit 2))
     (chinese-cns11643-5
-     (normal bdf "cns-5-40.bdf" ps-mule-encode-7bit 2))
+     (normal bdf ("cns5-40.bdf" "cns-5-40.bdf") ps-mule-encode-7bit 2))
     (chinese-cns11643-6
-     (normal bdf "cns-6-40.bdf" ps-mule-encode-7bit 2))
+     (normal bdf ("cns6-40.bdf" "cns-6-40.bdf") ps-mule-encode-7bit 2))
     (chinese-cns11643-7
-     (normal bdf "cns-7-40.bdf" ps-mule-encode-7bit 2))
+     (normal bdf ("cns7-40.bdf" "cns-7-40.bdf") ps-mule-encode-7bit 2))
     (indian-2-column
-     (normal bdf "mule-indian-24.bdf" ps-mule-encode-7bit 2))
+     (normal bdf ("ind24-mule.bdf" "mule-indian-24.bdf") ps-mule-encode-7bit 2))
     (tibetan
-     (normal bdf "mule-tibmdx-24.bdf" ps-mule-encode-7bit 2)))
+     (normal bdf ("tib24p-mule.bdf" "tib24-mule.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.
@@ -356,26 +395,34 @@ See also `ps-mule-font-info-database-bdf'.")
     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))
+(if (boundp 'mule-version)             ; only if mule package is loaded
+    (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))))))
+  ;; to avoid compilation gripes
+  (defvar ccl-encode-ethio-unicode nil))
+
+(if (boundp 'mule-version)
+    ;; bound mule-version
+    (defun ps-mule-encode-ethiopic (string)
+      (ccl-execute-on-string (symbol-value 'ccl-encode-ethio-unicode)
+                            (make-vector 9 nil)
+                            string))
+  ;; unbound mule-version
+  (defun ps-mule-encode-ethiopic (string)
+    string))
 
 ;; A charset which we are now processing.
 (defvar ps-mule-current-charset nil)
@@ -450,7 +497,7 @@ See the documentation of `ps-mule-get-font-spec' for FONT-SPEC's meaning."
        (let ((func (nth 3 slot)))
          (if func
              (progn
-               (or (featurep (nth 1 slot)) (require (nth 1 slot)))
+               (require (nth 1 slot))
                (ps-output-prologue (funcall func))))
          (setcar (nthcdr 2 slot) t)))))
 
@@ -461,10 +508,10 @@ See the documentation of `ps-mule-get-font-spec' for FONT-SPEC's meaning."
 
 (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))
+  (let* ((font-name (ps-mule-font-spec-name font-spec))
+        (font-name (if (consp font-name) (car font-name) font-name))
+        (font-cache (assoc font-name ps-mule-font-cache))
         (font-src (ps-mule-font-spec-src font-spec))
-        (font-name (ps-mule-font-spec-name font-spec))
         (func (nth 4 (assq font-src ps-mule-external-libraries)))
         (scaled-font-name
          (if (eq charset 'ascii)
@@ -475,7 +522,7 @@ See the documentation of `ps-mule-get-font-spec' for FONT-SPEC's meaning."
         (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
+                  scaled-font-name ps-font-size-internal font-name
                   (if (eq ps-mule-current-charset 'ascii) "Ascii" ""))))
     (if font-cache
        (setcar (cdr font-cache)
@@ -504,8 +551,9 @@ 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)))
+  (let* ((font-name (ps-mule-font-spec-name font-spec))
+        (font-name (if (consp font-name) (car font-name) font-name))
+        (font-cache (assoc font-name 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
@@ -563,23 +611,52 @@ STRING should contain only ASCII characters."
 %% Working dictionary for general use.
 /MuleDict 10 dict def
 
+%% Adjust /RelativeCompose properly by checking /BaselineOffset.
+/AdjustRelativeCompose {       % fontdict  |-  fontdict
+  dup length 2 add dict begin
+    { 1 index /FID ne { def } { pop pop } ifelse } forall
+    currentdict /BaselineOffset known {
+       BaselineOffset false eq { /BaselinfOffset 0 def } if
+    } {
+      /BaselineOffset 0 def
+    } ifelse
+    currentdict /RelativeCompose known not {
+      /RelativeCompose [ 0 0.1 ] def
+    } {
+      RelativeCompose false ne {
+       [ BaselineOffset RelativeCompose BaselineOffset add
+         [ FontMatrix { FontSize div } forall ] transform ]
+       /RelativeCompose exch def
+      } if
+    } ifelse
+    currentdict
+  end
+} def
+
 %% Define already scaled font for non-ASCII character sets.
 /DefFontMule {                 % fontname size basefont  |-  --
-  findfont exch scalefont definefont pop
+  findfont exch scalefont AdjustRelativeCompose 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
+  exch scalefont AdjustRelativeCompose reencodeFontISO
   end
 } def
 
-%% Set the specified non-ASCII font to use.  It doesn't install
-%% Ascent, etc.
+/CurrentFont false def
+
+%% Set the specified font to use.
+%% For non-ASCII font, don't install Ascent, etc.
 /FM {                          %  fontname  |-  --
-  findfont setfont
+    /font exch def
+    font /f0 eq font /f1 eq font /f2 eq font /f3 eq or or or {
+      font F
+    } {
+      font findfont setfont
+    } ifelse
 } bind def
 
 %% Show vacant box for characters which don't have appropriate font.
@@ -596,10 +673,10 @@ STRING should contain only ASCII characters."
     } 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
+%% Flag to tell if we are now handling a composition.  This is
+%% defined here because both composition handler and bitmap font
 %% handler require it.
-/Cmpchar false def
+/Composing false def
 
 %%%% End of Mule Section
 
@@ -613,11 +690,18 @@ STRING should contain only ASCII characters."
     (ps-output-prologue ps-mule-prologue)
     (setq ps-mule-prologue-generated t)))
 
-(defun ps-mule-find-wrappoint (from to char-width)
+(defun ps-mule-find-wrappoint (from to char-width &optional composition)
   "Find the longest sequence which is printable in the current line.
 
-The search starts at FROM and goes until TO.  It is assumed that all characters
-between FROM and TO belong to a charset in `ps-mule-current-charset'.
+The search starts at FROM and goes until TO.
+
+Optional 4th arg COMPOSITION, if non-nil, is information of
+composition starting at FROM.
+
+If COMPOSTION is nil, it is assumed that all characters between FROM
+and TO belong to a charset in `ps-mule-current-charset'.  Otherwise,
+it is assumed that all characters between FROM and TO belong to the
+same composition.
 
 CHAR-WIDTH is the average width of ASCII characters in the current font.
 
@@ -627,12 +711,17 @@ Returns the value:
 
 Where ENDPOS is the end position of the sequence and RUN-WIDTH is the width of
 the sequence."
-  (if (eq ps-mule-current-charset 'composition)
+  (if (or composition (eq ps-mule-current-charset 'composition))
       ;; We must draw one char by one.
-      (let ((run-width (* (char-width (char-after from)) char-width)))
+      (let ((run-width (if composition
+                          (nth 5 composition)
+                        (* (char-width (char-after from)) char-width))))
        (if (> run-width ps-width-remaining)
            (cons from ps-width-remaining)
-         (cons (ps-mule-next-point from) run-width)))
+         (cons (if composition
+                   (nth 1 composition)
+                 (ps-mule-next-point from))
+               run-width)))
     ;; We assume that all characters in this range have the same width.
     (setq char-width (* char-width (charset-width ps-mule-current-charset)))
     (let ((run-width (* (chars-in-region from to) char-width)))
@@ -682,13 +771,9 @@ the sequence."
       (ps-output-string (ps-mule-string-ascii string))
       (ps-output " S\n"))
 
+     ;; This case is obsolete for Emacs 21.
      ((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))))
+      (ps-mule-plot-composition from (ps-mule-next-point from) bg-color))
 
      (t
       ;; No way to print this charset.  Just show a vacant box of an
@@ -700,15 +785,99 @@ the sequence."
                           (charset-width ps-mule-current-charset))))))
     wrappoint))
 
+;;;###autoload
+(defun ps-mule-plot-composition (from to &optional bg-color)
+  "Generate PostScript code for ploting composition in the region FROM and TO.
+
+It is assumed that all characters in this region belong to the same
+composition.
+
+Optional argument BG-COLOR specifies background color.
+
+Returns the value:
+
+       (ENDPOS . RUN-WIDTH)
+
+Where ENDPOS is the end position of the sequence and RUN-WIDTH is the width of
+the sequence."
+  (let* ((composition (find-composition from nil nil t))
+        (wrappoint (ps-mule-find-wrappoint
+                    from to (ps-avg-char-width 'ps-font-for-text)
+                    composition))
+        (to (car wrappoint))
+        (font-type (car (nth ps-current-font
+                             (ps-font-alist 'ps-font-for-text)))))
+    (if (< from to)
+       ;; We can print this composition in the current line.
+       (let ((components (nth 2 composition)))
+         (ps-mule-plot-components
+          (ps-mule-prepare-font-for-components components font-type)
+          (if (nth 3 composition) "RLC" "RBC"))))
+    wrappoint))
+
+;; Prepare font of FONT-TYPE for printing COMPONENTS.  By side effect,
+;; change character elements in COMPONENTS to the form:
+;;     ENCODED-STRING or (FONTNAME . ENCODED-STRING)
+;; and change rule elements to the encoded value (integer).
+;; The latter form is used if we much change font for the character.
+
+(defun ps-mule-prepare-font-for-components (components font-type)
+  (let ((len (length components))
+       (i 0)
+       elt)
+    (while (< i len)
+      (setq elt (aref components i))
+      (if (consp elt)
+         ;; ELT is a composition rule.
+         (setq elt (encode-composition-rule elt))
+       ;; ELT is a glyph character.
+       (let* ((charset (char-charset elt))
+              (font (or (eq charset ps-mule-current-charset)
+                        (if (eq charset 'ascii)
+                            (format "/f%d" ps-current-font)
+                          (format "/f%02x-%d"
+                                  (charset-id charset) ps-current-font))))
+               str)
+         (setq ps-mule-current-charset charset
+               str (ps-mule-string-encoding
+                    (ps-mule-get-font-spec charset font-type)
+                    (char-to-string elt)
+                    'no-setfont))
+         (if (stringp font)
+             (setq elt (cons font str) ps-last-font font)
+           (setq elt str))))
+      (aset components i elt)
+      (setq i (1+ i))))
+  components)
+
+(defun ps-mule-plot-components (components tail)
+  (let ((elt (aref components 0))
+       (len (length components))
+       (i 1))
+    (ps-output "[ ")
+    (if (stringp elt)
+       (ps-output-string elt)
+      (ps-output (car elt) " ")
+      (ps-output-string (cdr elt)))
+    (while (< i len)
+      (setq elt (aref components i) i (1+ i))
+      (ps-output " ")
+      (cond ((stringp elt)
+            (ps-output-string elt))
+           ((consp elt)
+            (ps-output (car elt) " ")
+            (ps-output-string (cdr elt)))
+           (t                          ; i.e. (integerp elt)
+            (ps-output (format "%d" elt)))))
+    (ps-output " ] " tail "\n")))
+
 ;; Composite font support
 
-(defvar ps-mule-cmpchar-prologue-generated nil)
+(defvar ps-mule-composition-prologue-generated nil)
 
-(defconst ps-mule-cmpchar-prologue
-  "%%%% Composite character handler
-/CmpcharWidth 0 def
-/CmpcharRelativeCompose 0 def
-/CmpcharRelativeSkip 0.4 def
+(defconst ps-mule-composition-prologue
+  "%%%% Character compositition handler
+/RelativeCompositionSkip 0.4 def
 
 %% Get a bounding box (relative to currentpoint) of STR.
 /GetPathBox {                  % str  |-  --
@@ -716,154 +885,177 @@ the sequence."
     currentfont /FontType get 3 eq { %ifelse
        stringwidth pop pop
     } {
-       currentpoint /y exch def pop
+       currentpoint /y exch def /x exch def
        false charpath flattenpath pathbbox
-       y sub /URY exch def pop
-       y sub /LLY exch def pop
+       y sub /URY exch def x sub /URX exch def
+       y sub /LLY exch def x sub /LLX exch def
     } 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
+%% Apply effects (underline, strikeout, overline, box) to the
+%% rectangle specified by TOP BOTTOM LEFT RIGHT.
+/SpecialEffect {                                       % --  |-  --
+    currentpoint dup TOP add /yy exch def BOTTOM add /YY exch def
+    dup LEFT add /xx exch def RIGHT add /XX exch def
+    %% Adjust positions for future shadowing.
+    Effect 8 and 0 ne {
+       /yy yy Yshadow add def
+       /XX XX Xshadow add def
+    } if
+    Effect 1 and 0 ne { UnderlinePosition Hline } if   % underline
+    Effect 2 and 0 ne { StrikeoutPosition Hline } if   % strikeout
+    Effect 4 and 0 ne { OverlinePosition  Hline } if   % overline
+    bg {                                               % background
+       true
+       Effect 16 and 0 ne {SpaceBackground doBox} { xx yy XX YY doRect} ifelse
+    } if
+    Effect 16 and 0 ne { false 0 doBox } if            % box
+} 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
+%% Show STR with effects (shadow, outline).
+/ShowWithEffect {                                      % str  |-  --
+    Effect 8 and 0 ne { dup doShadow } if
+    Effect 32 and 0 ne { true doOutline } { show } ifelse
+} def
+
+%% Draw COMPONETS which have the form [ font0? [str0 xoff0 yoff0] ... ].
+/ShowComponents {                                      % compoents  |-  -
+    LEFT 0 lt { LEFT neg 0 rmoveto } if
+    {
+       dup type /nametype eq {                         % font
+           FM
+       } {                                             % [ str xoff yoff ]
+           gsave
+           aload pop rmoveto ShowWithEffect
+           grestore
+       } ifelse
+    } forall
+    RIGHT 0 rmoveto
+} def
 
-%% Rule base composition
-/RBC {                         % str xoff gref nref  |-  --
-    /nref exch def /gref exch def
+%% Show relative composition.
+/RLC {         % [ font0? str0 font1? str1 ... fontN? strN ]  |-  --
+    /components exch def
+    /Composing true def
+    /first true 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
+    [ components {
+       /elt exch def
+       elt type /nametype eq {                         % font
+           elt dup FM
+       } { first {                                     % first string
+           /first false def
+           elt GetPathBox
+           %% Bounding box of overall glyphs.
+           /LEFT LLX def
+           /RIGHT URX def
+           /TOP URY def
+           /BOTTOM LLY def
+           currentfont /RelativeCompose known {
+               /relative currentfont /RelativeCompose get def
+           } {
+               %% Disable relative composition by setting sufficiently low
+               %% and high positions.
+               /relative [ -100000 100000 ] def
+           } ifelse
+           [ elt 0 0 ]
+       } {                                             % other strings
+           elt GetPathBox
+           [ elt                                       % str
+             LLX 0 lt { RIGHT } { 0 } ifelse           % xoff
+             LLY relative 1 get ge {                   % compose on TOP
+                 TOP LLY sub RelativeCompositionSkip add       % yoff
+                 /TOP TOP URY LLY sub add RelativeCompositionSkip add def
+             } { URY relative 0 get le {               % compose under BOTTOM
+                 BOTTOM URY sub RelativeCompositionSkip sub % yoff
+                 /BOTTOM BOTTOM URY LLY sub sub
+                       RelativeCompositionSkip sub def
+             } {
+                 0                                     % yoff
+                 URY TOP gt { /TOP URY def } if
+                 LLY BOTTOM lt { /BOTTOM LLY def } if
+             } ifelse } ifelse
+             ]
+           URX RIGHT gt { /RIGHT URX def } if
+       } ifelse } ifelse
+    } forall ] /components exch def
     grestore
-} bind def
 
-%% Relative composition
-/RLC {                         % str  |-  --
+    %% Reflect special effects.
+    SpecialEffect
+
+    %% Draw components while ignoring effects other than shadow and outline.
+    components ShowComponents
+    /Composing false def
+
+} def
+
+%% Show rule-base composition.
+/RBC {         % [ font0? str0 rule1 font1? str1 rule2 ... strN ]  |-  --
+    /components exch def
+    /Composing true def
+    /first true def
     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
+    [ components {
+       /elt exch def
+       elt type /nametype eq {                         % font
+           elt dup FM
+       } { elt type /integertype eq {                  % rule
+           %% This RULE decoding should be compatible with macro
+           %% COMPOSITION_DECODE_RULE in emcas/src/composite.h.
+           elt 12 idiv dup 3 mod /grefx exch def 3 idiv /grefy exch def
+           elt 12 mod dup 3 mod /nrefx exch def 3 idiv /nrefy exch def
+       } { first {                                     % first string
+           /first false def
+           elt GetPathBox
+           %% Bounding box of overall glyphs.
+           /LEFT LLX def
+           /RIGHT URX def
+           /TOP URY def
+           /BOTTOM LLY def
+           /WIDTH RIGHT LEFT sub def
+           [ elt 0 0 ]
+       } {                                             % other strings
+           elt GetPathBox
+           /width URX LLX sub def
+           /height URY LLY sub def
+           /left LEFT [ 0 WIDTH 2 div WIDTH ] grefx get add
+               [ 0 width 2 div width ] nrefx get sub def
+           /bottom [ TOP 0 BOTTOM TOP BOTTOM add 2 div ] grefy get
+               [ height LLY neg 0 height 2 div ] nrefy get sub def
+           %% Update bounding box
+           left LEFT lt { /LEFT left def } if
+           left width add RIGHT gt { /RIGHT left width add def } if
+           /WIDTH RIGHT LEFT sub def
+           bottom BOTTOM lt { /BOTTOM bottom def } if
+           bottom height add TOP gt { /TOP bottom height add def } if
+           [ elt left LLX sub bottom LLY sub ]
+       } ifelse } ifelse } ifelse
+    } forall ] /components exch def
     grestore
-} bind def
-%%%% End of composite character handler
+    
+    %% Reflect special effects.
+    SpecialEffect
+    
+    %% Draw components while ignoring effects other than shadow and outline.
+    components ShowComponents
+
+    /Composing false def
+} def
+%%%% End of character composition 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))))
-       (the-list (cons '(3 . 3) ch-rule-list))
-       cmpchar-elements)
-    (while the-list
-      (let* ((this (car the-list))
-            (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)))
-            (char (car (cdr the-list)))
-            (width (float (char-width char)))
-            left)
-       (setq left (+ leftmost
-                     (* (- rightmost leftmost) gref-x 0.5)
-                     (- (* nref-x width 0.5)))
-             cmpchar-elements (cons (list char left gref-y nref-y)
-                                    cmpchar-elements)
-             leftmost (min left leftmost)
-             rightmost (max (+ left width) rightmost)
-             the-list (nthcdr 2 the-list))))
-    (if (< leftmost 0)
-       (let ((the-list cmpchar-elements)
-             elt)
-         (while the-list
-           (setq elt (car the-list)
-                 the-list (cdr the-list))
-           (setcar (cdr elt) (- (nth 1 elt) leftmost)))))
-    (ps-mule-plot-cmpchar (nreverse cmpchar-elements)
-                         total-width nil font-type)))
-
-(defun ps-mule-plot-cmpchar (elements total-width relativep font-type)
-  (let* ((elt (car elements))
-        (ch (if relativep elt (car elt))))
-    (ps-output-string (ps-mule-prepare-cmpchar-font ch font-type))
-    (ps-output (format " %d %d BC "
-                      (if relativep 0 (nth 1 elt))
-                      total-width))
-    (while (setq elements (cdr elements))
-      (setq elt (car elements)
-           ch (if relativep elt (car elt)))
-      (ps-output-string (ps-mule-prepare-cmpchar-font ch font-type))
-      (ps-output (if relativep
-                    " RLC "
-                  (format " %d %d %d RBC "
-                          (nth 1 elt) (nth 2 elt) (nth 3 elt))))))
-  (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)))
-    (cond (font-spec
-          (ps-mule-string-encoding font-spec (char-to-string char)))
-
-         ((eq ps-mule-current-charset 'latin-iso8859-1)
-          (ps-mule-string-ascii (char-to-string char)))
-
-         (t
-          ;; No font for CHAR.
-          (ps-set-font ps-current-font)
-          " "))))
+  "PostScript code for printing character compositition.")
 
 (defun ps-mule-string-ascii (str)
   (ps-set-font ps-current-font)
   (string-as-unibyte (encode-coding-string str 'iso-latin-1)))
 
-(defun ps-mule-string-encoding (font-spec str)
+;; Encode STR for a font specified by FONT-SPEC and return the result.
+;; If necessary, Postscript codes for the font and glyphs to print
+;; STRING are generated.
+(defun ps-mule-string-encoding (font-spec str &optional no-setfont)
   (let ((encoding (ps-mule-font-spec-encoding font-spec)))
     (setq str
          (string-as-unibyte
@@ -876,8 +1068,9 @@ the sequence."
                 (t
                  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))
+       (ps-mule-prepare-font font-spec str ps-mule-current-charset no-setfont)
+      (or no-setfont
+         (ps-set-font ps-current-font)))
     str))
 
 ;; Bitmap font support
@@ -944,12 +1137,12 @@ NewBitmapDict
        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
+       Composing { %ifelse
            /FontMatrix get [ exch { size div } forall ] /mtrx exch def
            bmp 3 get bmp 4 get mtrx transform
-           /LLY exch def pop
+           /LLY exch def /LLX exch def
            bmp 1 get bmp 3 get add bmp 2 get bmp 4 get add mtrx transform
-           /URY exch def pop
+           /URY exch def /URX exch def
        } {
            pop
        } ifelse
@@ -1059,7 +1252,7 @@ NewBitmapDict
   "Initialize global data for printing multi-byte characters."
   (setq ps-mule-font-cache nil
        ps-mule-prologue-generated nil
-       ps-mule-cmpchar-prologue-generated nil
+       ps-mule-composition-prologue-generated nil
        ps-mule-bitmap-prologue-generated nil)
   (mapcar `(lambda (x) (setcar (nthcdr 2 x) nil))
          ps-mule-external-libraries))
@@ -1077,7 +1270,7 @@ This checks if all multi-byte characters in the region are printable or not."
              ((eq ps-multibyte-buffer 'bdf-font-except-latin)
               ps-mule-font-info-database-ps-bdf)
              (t
-              ps-mule-font-info-database-latin)))
+              ps-mule-font-info-database-default)))
   (and (boundp 'enable-multibyte-characters)
        enable-multibyte-characters
        ;; Initialize `ps-mule-charset-list'.  If some characters aren't
@@ -1104,6 +1297,13 @@ This checks if all multi-byte characters in the region are printable or not."
 
   (setq ps-mule-current-charset 'ascii)
 
+  (if (and (nth 2 (find-composition from to))
+          (not ps-mule-composition-prologue-generated))
+      (progn
+       (ps-mule-prologue-generated)
+       (ps-output-prologue ps-mule-composition-prologue)
+       (setq ps-mule-composition-prologue-generated t)))
+
   (if ps-mule-charset-list
       (let ((the-list ps-mule-charset-list)
            font-spec elt)
@@ -1113,9 +1313,9 @@ This checks if all multi-byte characters in the region are printable or not."
          (setq elt (car the-list)
                the-list (cdr the-list))
          (cond ((and (eq elt 'composition)
-                     (not ps-mule-cmpchar-prologue-generated))
-                (ps-output-prologue ps-mule-cmpchar-prologue)
-                (setq ps-mule-cmpchar-prologue-generated t))
+                     (not ps-mule-composition-prologue-generated))
+                (ps-output-prologue ps-mule-composition-prologue)
+                (setq ps-mule-composition-prologue-generated t))
                ((setq font-spec (ps-mule-get-font-spec elt 'normal))
                 (ps-mule-init-external-library font-spec))))))
 
@@ -1144,7 +1344,7 @@ This checks if all multi-byte characters in the region are printable or not."
                   (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"))))))
+                 (t (string-as-multibyte "[^\000-\011\013\015-\377]"))))))
 
 ;;;###autoload
 (defun ps-mule-begin-page ()