diff options
| author | Vinicius Jose Latorre | 2003-07-12 00:20:38 +0000 |
|---|---|---|
| committer | Vinicius Jose Latorre | 2003-07-12 00:20:38 +0000 |
| commit | 7a1e19738c24394ffbc4a38cee0ce2df8db23897 (patch) | |
| tree | be8def22f88aadcae15c0bd97d036b81de4c0070 | |
| parent | 2356fa8a91e305ab8a2286dc7545c2f69effac92 (diff) | |
| download | emacs-7a1e19738c24394ffbc4a38cee0ce2df8db23897.tar.gz emacs-7a1e19738c24394ffbc4a38cee0ce2df8db23897.zip | |
copyright line fix & bdf-directory-list init fix
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/ps-bdf.el | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7d80481f6a7..d892cb29df6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2003-07-11 Vinicius Jose Latorre <viniciusjl@ig.com.br> | ||
| 2 | |||
| 3 | * ps-bdf.el: Fix copyright line. | ||
| 4 | (bdf-directory-list): Fix initialization code. | ||
| 5 | |||
| 1 | 2003-07-11 John Paul Wallington <jpw@gnu.org> | 6 | 2003-07-11 John Paul Wallington <jpw@gnu.org> |
| 2 | 7 | ||
| 3 | * emacs-lisp/ring.el (ring-empty-p): Use `zerop'. | 8 | * emacs-lisp/ring.el (ring-empty-p): Use `zerop'. |
diff --git a/lisp/ps-bdf.el b/lisp/ps-bdf.el index 00d5e1e15f4..838cec330bd 100644 --- a/lisp/ps-bdf.el +++ b/lisp/ps-bdf.el | |||
| @@ -1,11 +1,11 @@ | |||
| 1 | ;;; ps-bdf.el --- BDF font file handler for ps-print | 1 | ;;; ps-bdf.el --- BDF font file handler for ps-print |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1998,99,2001 Electrotechnical Laboratory, JAPAN. | 3 | ;; Copyright (C) 1998, 1999, 2001, 2003 Electrotechnical Laboratory, JAPAN. |
| 4 | ;; Licensed to the Free Software Foundation. | 4 | ;; Licensed to the Free Software Foundation. |
| 5 | 5 | ||
| 6 | ;; Keywords: wp, BDF, font, PostScript | 6 | ;; Keywords: wp, BDF, font, PostScript |
| 7 | ;; Maintainer: Kenichi Handa <handa@etl.go.jp> | 7 | ;; Maintainer: Kenichi Handa <handa@etl.go.jp> |
| 8 | ;; Time-stamp: <2001-07-15 12:25:51 pavel> | 8 | ;; Time-stamp: <2003/07/11 21:13:44 vinicius> |
| 9 | 9 | ||
| 10 | ;; This file is part of GNU Emacs. | 10 | ;; This file is part of GNU Emacs. |
| 11 | 11 | ||
| @@ -40,8 +40,7 @@ | |||
| 40 | 40 | ||
| 41 | ;;;###autoload | 41 | ;;;###autoload |
| 42 | (defvar bdf-directory-list | 42 | (defvar bdf-directory-list |
| 43 | (if (and (memq system-type '(ms-dos windows-nt)) | 43 | (if (memq system-type '(ms-dos windows-nt)) |
| 44 | (boundp 'installation-directory)) | ||
| 45 | (list (expand-file-name "fonts/bdf" installation-directory)) | 44 | (list (expand-file-name "fonts/bdf" installation-directory)) |
| 46 | '("/usr/local/share/emacs/fonts/bdf")) | 45 | '("/usr/local/share/emacs/fonts/bdf")) |
| 47 | "*List of directories to search for `BDF' font files. | 46 | "*List of directories to search for `BDF' font files. |
| @@ -49,8 +48,7 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") | |||
| 49 | 48 | ||
| 50 | ;; MS-DOS and MS-Windows users like to move the binary around after | 49 | ;; MS-DOS and MS-Windows users like to move the binary around after |
| 51 | ;; it's built, but the value above is computed at load-up time. | 50 | ;; it's built, but the value above is computed at load-up time. |
| 52 | (and (and (memq system-type '(ms-dos windows-nt)) | 51 | (and (memq system-type '(ms-dos windows-nt)) |
| 53 | (boundp 'installation-directory)) | ||
| 54 | (setq bdf-directory-list | 52 | (setq bdf-directory-list |
| 55 | (list (expand-file-name "fonts/bdf" installation-directory)))) | 53 | (list (expand-file-name "fonts/bdf" installation-directory)))) |
| 56 | 54 | ||