]> git.eshelyaron.com Git - emacs.git/commitdiff
Transform defvar into defcustom.
authorVinicius Jose Latorre <viniciusjl@ig.com.br>
Fri, 5 Dec 2008 14:56:18 +0000 (14:56 +0000)
committerVinicius Jose Latorre <viniciusjl@ig.com.br>
Fri, 5 Dec 2008 14:56:18 +0000 (14:56 +0000)
lisp/ChangeLog
lisp/ps-bdf.el

index 75a1acf3fff9a3e4b2d544aa4452f9d7bca8d406..ae07e9c6417c1132661f3da901971846bed9224a 100644 (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
index c5b394a72128db6aa48381ec5a769ddf3cb8bba9..d508e3f62b38a65130098bdb3215a0a2c04d8b1a 100644 (file)
   (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.