# HG changeset patch # User Kenichi Handa # Date 976147211 0 # Node ID b5810f23b1b405c7329b832a481d0ec582af9f12 # Parent 9b30747647c82837c4b6d7405446ad571bf86936 (bdf-read-font-info): Modify the kludgy code for fonts of wrong SIZE record. diff -r 9b30747647c8 -r b5810f23b1b4 lisp/ps-bdf.el --- a/lisp/ps-bdf.el Wed Dec 06 23:59:53 2000 +0000 +++ b/lisp/ps-bdf.el Thu Dec 07 00:00:11 2000 +0000 @@ -240,7 +240,7 @@ (setq size (read (current-buffer))) ;; The following kludgy code is t avoid bugs of several ;; fonts which have wrong SIZE record. - (and (<= size (/ (aref font-bounding-box 1) 2)) + (and (<= size (/ (aref font-bounding-box 1) 3)) (setq size (aref font-bounding-box 1))) (setq default-char (bdf-search-and-read "\nDEFAULT_CHAR" nil))