1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-10 15:56:18 +00:00

Transform defvar into defcustom.

This commit is contained in:
Vinicius Jose Latorre 2008-12-05 14:56:18 +00:00
parent 68c5540bb7
commit 6530de7d39
2 changed files with 11 additions and 3 deletions

View File

@ -2,6 +2,11 @@
* dired.el (dired-font-lock-keywords): Fix last change.
2008-12-05 Vinicius Jose Latorre <viniciusjl@ig.com.br>
* ps-bdf.el (bdf-directory-list): Transform (defvar ... "*..")
into (defcustom ... "..." :type ... :group...).
2008-12-05 Juanma Barranquero <lekktu@gmail.com>
* international/mule-diag.el (mule-diag): Display the window

View File

@ -40,12 +40,15 @@
(require 'ps-mule))
;;;###autoload
(defvar bdf-directory-list
(defcustom bdf-directory-list
(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\").")
"List of directories to search for `BDF' font files.
The default value is '(\"/usr/local/share/emacs/fonts/bdf\")."
:type '(repeat :tag "BDF font directory list"
(directory :tag "BDF font directory"))
:group 'ps-print-miscellany)
;; 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.