* 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
(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.