diff options
author | Kenichi Handa <handa@m17n.org> | 1999-02-12 11:14:46 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1999-02-12 11:14:46 +0000 |
commit | fb901f73c49a3470d02567e9f6a9a612cb103b18 (patch) | |
tree | 8b39b809480d16904a99dd5bf3fd7105b7553548 /lisp/ps-mule.el | |
parent | 25330efdb5e4766ac3f93e40ae48e6bd33d8cb92 (diff) | |
download | emacs-fb901f73c49a3470d02567e9f6a9a612cb103b18.tar.gz |
(ps-mule-font-info-database-bdf): Fix ENCODING field
for ASCII and Latin-1.
Diffstat (limited to 'lisp/ps-mule.el')
-rw-r--r-- | lisp/ps-mule.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/ps-mule.el b/lisp/ps-mule.el index f29b16f023e..a52b30121e1 100644 --- a/lisp/ps-mule.el +++ b/lisp/ps-mule.el @@ -215,11 +215,11 @@ Currently, data for Japanese and Korean PostScript printers are listed.") (defconst ps-mule-font-info-database-bdf '((ascii (normal bdf ("lt1-24-etl.bdf" "etl24-latin1.bdf") nil 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)) + (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 ("lt1-24-etl.bdf" "etl24-latin1.bdf") nil 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)) |