diff options
author | Richard M. Stallman <rms@gnu.org> | 2003-01-13 08:01:54 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2003-01-13 08:01:54 +0000 |
commit | be28f1a745b089606960b4d7082270e360620305 (patch) | |
tree | 675f9697a7d00e42bc06e7c29d7102edea46c4c1 /lisp/term | |
parent | 9a36dd517de3c83b32043c7a897c81ae5a45e58e (diff) | |
download | emacs-be28f1a745b089606960b4d7082270e360620305.tar.gz |
Require fontset conditionally again.
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/x-win.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index 41f3f88d00c..9ad1231c8ea 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el @@ -75,7 +75,8 @@ (require 'faces) (require 'select) (require 'menu-bar) -(require 'fontset) +(if (fboundp 'new-fontset) + (require 'fontset)) (defvar x-invocation-args) |