diff options
author | Kenichi Handa <handa@m17n.org> | 2000-12-07 00:00:11 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2000-12-07 00:00:11 +0000 |
commit | 1c3cea113313ace314f32269a79e208234e8f030 (patch) | |
tree | 79e6b8cd16505098e896a724560ed913b77141ae /lisp/ps-bdf.el | |
parent | 73481ae314c12a16d4f0896593b1ccde8d226d3b (diff) | |
download | emacs-1c3cea113313ace314f32269a79e208234e8f030.tar.gz |
(bdf-read-font-info): Modify the kludgy code for fonts
of wrong SIZE record.
Diffstat (limited to 'lisp/ps-bdf.el')
-rw-r--r-- | lisp/ps-bdf.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ps-bdf.el b/lisp/ps-bdf.el index 0261ccbf553..441584607de 100644 --- a/lisp/ps-bdf.el +++ b/lisp/ps-bdf.el @@ -240,7 +240,7 @@ CODE, where N and CODE are in the following relation: (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)) |