summaryrefslogtreecommitdiff
path: root/lisp/ps-bdf.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2001-06-29 17:50:27 +0000
committerEli Zaretskii <eliz@gnu.org>2001-06-29 17:50:27 +0000
commita30ac6b189e965b9343e83fd0e02409d888ae9b9 (patch)
tree7e4bd784f016e625d2dfa6c6449b7170527e2a4c /lisp/ps-bdf.el
parent159f7b34cb6b06bf03d64229005cbd150cf04f0f (diff)
downloademacs-a30ac6b189e965b9343e83fd0e02409d888ae9b9.tar.gz
(bdf-directory-list): Use the value relative to
installation-directory for MS-Windows as well.
Diffstat (limited to 'lisp/ps-bdf.el')
-rw-r--r--lisp/ps-bdf.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/ps-bdf.el b/lisp/ps-bdf.el
index 241f4d9aaa4..733588185d2 100644
--- a/lisp/ps-bdf.el
+++ b/lisp/ps-bdf.el
@@ -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))))