# HG changeset patch # User Eli Zaretskii # Date 993837027 0 # Node ID ec872cb65bc3147044d0ed7b4e5ea6c315d9b33a # Parent c6078ee53ddf350ec6a3cdad6bdc6f922386c47d (bdf-directory-list): Use the value relative to installation-directory for MS-Windows as well. diff -r c6078ee53ddf -r ec872cb65bc3 lisp/ps-bdf.el --- a/lisp/ps-bdf.el Fri Jun 29 17:50:05 2001 +0000 +++ b/lisp/ps-bdf.el Fri Jun 29 17:50:27 2001 +0000 @@ -40,15 +40,15 @@ ;;;###autoload (defvar bdf-directory-list - (if (eq system-type 'ms-dos) + (if (memq system-type '(ms-dos windows-nt)) (list (expand-file-name "fonts/bdf" installation-directory)) '("/usr/local/share/emacs/fonts/bdf")) "*List of directories to search for `BDF' font files. The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") -;; MS-DOS users like to move the binary around after it's built, but -;; the value above is computed at load-up time. -(and (eq system-type 'ms-dos) +;; MS-DOS and MS-Windows users like to move the binary around after +;; it's built, but the value above is computed at load-up time. +(and (memq system-type '(ms-dos windows-nt)) (setq bdf-directory-list (list (expand-file-name "fonts/bdf" installation-directory))))